sourabhbargi11 commited on
Commit
553f724
·
verified ·
1 Parent(s): 7644923

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -35,13 +35,7 @@ def generate_caption(image_processor, model, tokenizer,device, image):
35
  model.eval()
36
  # Generate caption
37
  with torch.no_grad():
38
- output = model.generate(
39
- pixel_values=inputs ,
40
- max_length=1000,# Adjust the maximum length of the generated caption as needed
41
- num_beams=4, # Adjust the number of beams for beam search decoding
42
- early_stopping=True , # Enable early stopping to stop generation when all beams finished
43
- batch_size=1
44
- )
45
  # Decode the generated caption
46
  caption = tokenizer.decode(output[0], skip_special_tokens=True)
47
  return caption
 
35
  model.eval()
36
  # Generate caption
37
  with torch.no_grad():
38
+ output = model.generate(pixel_values=inputs)
 
 
 
 
 
 
39
  # Decode the generated caption
40
  caption = tokenizer.decode(output[0], skip_special_tokens=True)
41
  return caption