mserrao commited on
Commit
0faa16f
·
verified ·
1 Parent(s): 1824c8e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -0
README.md CHANGED
@@ -84,6 +84,10 @@ Categories:
84
 
85
  ```python
86
  from datasets import load_dataset
 
 
 
 
87
 
88
  # 1. Load the dataset
89
  dataset = load_dataset("VLR-CVC/DocVQA-2026", split="val")
 
84
 
85
  ```python
86
  from datasets import load_dataset
87
+ from PIL import Image
88
+
89
+ # This line will allow for loading the largest images in the dataset
90
+ Image.MAX_IMAGE_PIXELS = None
91
 
92
  # 1. Load the dataset
93
  dataset = load_dataset("VLR-CVC/DocVQA-2026", split="val")