Dataset Viewer

The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider removing the loading script and relying on automated data support (you can use convert_to_parquet from the datasets library). If this is not possible, please open a discussion for direct help.

copy of data-of-multimodal-sarcasm-detection

# usage
from datasets import load_dataset
from transformers import CLIPImageProcessor, CLIPTokenizer
from torch.utils.data import DataLoader

image_processor = CLIPImageProcessor.from_pretrained(clip_path)
tokenizer = CLIPTokenizer.from_pretrained(clip_path)

def tokenization(example):
  text_inputs = tokenizer(example["text"], truncation=True, padding=True, return_tensors="pt")
  image_inputs = image_processor(example["image"], return_tensors="pt")
  return {'pixel_values': image_inputs['pixel_values'],
          'input_ids': text_inputs['input_ids'],
          'attention_mask': text_inputs['attention_mask'],
          "label": example["label"]}

dataset = load_dataset('quaeast/multimodal_sarcasm_detection')
dataset.set_transform(tokenization)

# get torch dataloader
train_dl = DataLoader(dataset['train'], batch_size=256, shuffle=True)
test_dl = DataLoader(dataset['test'], batch_size=256, shuffle=True)
val_dl = DataLoader(dataset['validation'], batch_size=256, shuffle=True)
Downloads last month
63