Datasets:

Modalities:
Image
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
Dask
License:
Llabres commited on
Commit
b3f4a99
·
1 Parent(s): 5191cfa

Added Baselines

Browse files
Files changed (1) hide show
  1. README.md +10 -2
README.md CHANGED
@@ -241,7 +241,7 @@ Given a caption from the previous panel, select the panel that best continues th
241
  from datasets import load_dataset
242
 
243
  skill = "sequence_filling" # "sequence_filling", "char_coherence", "visual_closure", "text_closure", "caption_relevance"
244
- split = "val" # "val", "test"
245
  dataset = load_dataset("VLR-CVC/ComicsPAP", skill, split=split)
246
  ```
247
 
@@ -512,7 +512,15 @@ print(f"Overall accuracy: {overall_accuracy}")
512
 
513
  ## Baselines
514
 
515
- _Results and Code for baselines coming on 25/02/2025_
 
 
 
 
 
 
 
 
516
 
517
 
518
  ## Citation
 
241
  from datasets import load_dataset
242
 
243
  skill = "sequence_filling" # "sequence_filling", "char_coherence", "visual_closure", "text_closure", "caption_relevance"
244
+ split = "val" # "val", "test", "train"
245
  dataset = load_dataset("VLR-CVC/ComicsPAP", skill, split=split)
246
  ```
247
 
 
512
 
513
  ## Baselines
514
 
515
+
516
+ | Model | Repo | Sequence Filling (%) | Character Coherence (%) | Visual Closure (%) | Text Closure (%) | Caption Relevance (%) | Total (%) |
517
+ | :------------------------: | :---------------------------------------------------------------------------------: | :------------------: | :---------------------: | :----------------: | :--------------: | :-------------------: | :-------: |
518
+ | Random | | 20.22 | 50.00 | 14.41 | 25.00 | 25.00 | 24.30 |
519
+ | Qwen2.5-VL-3B (Zero-Shot) | [Qwen/Qwen2.5-VL-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-3B-Instruct) | 27.48 | 48.95 | 21.33 | 27.41 | 32.82 | 29.61 |
520
+ | Qwen2.5-VL-7B (Zero-Shot) | [Qwen/Qwen2.5-VL-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct) | 30.53 | 54.55 | 22.00 | 37.45 | 40.84 | 34.91 |
521
+ | Qwen2.5-VL-72B (Zero-Shot) | [Qwen/Qwen2.5-VL-72B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-72B-Instruct) | | | | | | |
522
+ | Fine-Tuned Baselines | _coming soon_ | | | | | | |
523
+
524
 
525
 
526
  ## Citation