sourabhbargi11 commited on
Commit
c400fc0
·
verified ·
1 Parent(s): 0c24f96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -31,13 +31,13 @@ def image_preprocess(image):
31
  return image
32
 
33
  def generate_caption(image_processor, model, tokenizer,device, image):
34
- inputs = image_processor(image, return_tensors='pt').to(device)
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
  )
 
31
  return image
32
 
33
  def generate_caption(image_processor, model, tokenizer,device, image):
34
+ inputs = image_processor(image,batch_size=1, return_tensors='pt').to(device)
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
  )