davanstrien HF Staff commited on
Commit
0613e09
·
1 Parent(s): 9e458ca

Fix: Force redownload to avoid dataset caching issues

Browse files
Files changed (1) hide show
  1. deepseek-ocr2-vllm.py +1 -1
deepseek-ocr2-vllm.py CHANGED
@@ -348,7 +348,7 @@ def main(
348
 
349
  # Load dataset
350
  logger.info(f"Loading dataset: {input_dataset}")
351
- dataset = load_dataset(input_dataset, split=split)
352
 
353
  # Validate image column
354
  if image_column not in dataset.column_names:
 
348
 
349
  # Load dataset
350
  logger.info(f"Loading dataset: {input_dataset}")
351
+ dataset = load_dataset(input_dataset, split=split, download_mode="force_redownload")
352
 
353
  # Validate image column
354
  if image_column not in dataset.column_names: