| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| import torch |
| from torch.utils.data import Dataset |
| import json |
| import os |
| import random |
|
|
|
|
| class LatentDataset(Dataset): |
| def __init__( |
| self, json_path, num_latent_t, cfg_rate, |
| ): |
| |
| self.json_path = json_path |
| self.cfg_rate = cfg_rate |
| self.datase_dir_path = os.path.dirname(json_path) |
| |
| |
| self.prompt_embed_dir = os.path.join(self.datase_dir_path, "prompt_embed") |
| self.prompt_attention_mask_dir = os.path.join( |
| self.datase_dir_path, "prompt_attention_mask" |
| ) |
| with open(self.json_path, "r") as f: |
| self.data_anno = json.load(f) |
| |
| |
| self.num_latent_t = num_latent_t |
| |
| self.uncond_prompt_embed = torch.zeros(256, 4096).to(torch.float32) |
| |
| self.uncond_prompt_mask = torch.zeros(256).bool() |
| self.lengths = [ |
| data_item["length"] if "length" in data_item else 1 |
| for data_item in self.data_anno |
| ] |
|
|
| def __getitem__(self, idx): |
| |
| prompt_embed_file = self.data_anno[idx]["prompt_embed_path"] |
| prompt_attention_mask_file = self.data_anno[idx]["prompt_attention_mask"] |
| if random.random() < self.cfg_rate: |
| prompt_embed = self.uncond_prompt_embed |
| prompt_attention_mask = self.uncond_prompt_mask |
| else: |
| prompt_embed = torch.load( |
| os.path.join(self.prompt_embed_dir, prompt_embed_file), |
| map_location="cpu", |
| weights_only=True, |
| ) |
| prompt_attention_mask = torch.load( |
| os.path.join( |
| self.prompt_attention_mask_dir, prompt_attention_mask_file |
| ), |
| map_location="cpu", |
| weights_only=True, |
| ) |
| return prompt_embed, prompt_attention_mask, self.data_anno[idx]['caption'] |
|
|
| def __len__(self): |
| return len(self.data_anno) |
|
|
|
|
| def latent_collate_function(batch): |
| |
| |
| |
| |
| prompt_embeds, prompt_attention_masks, caption = zip(*batch) |
| |
| prompt_embeds = torch.stack(prompt_embeds, dim=0) |
| prompt_attention_masks = torch.stack(prompt_attention_masks, dim=0) |
| |
| return prompt_embeds, prompt_attention_masks, caption |
|
|
|
|
| if __name__ == "__main__": |
| dataset = LatentDataset("data/rl_embeddings/videos2caption.json", num_latent_t=28, cfg_rate=0.0) |
| dataloader = torch.utils.data.DataLoader( |
| dataset, batch_size=2, shuffle=False, collate_fn=latent_collate_function |
| ) |
| for prompt_embed, prompt_attention_mask, caption in dataloader: |
| print( |
| prompt_embed.shape, |
| prompt_attention_mask.shape, |
| caption |
| ) |
| import pdb |
|
|
| pdb.set_trace() |
|
|