DucHaiten commited on
Commit
e708dfd
1 Parent(s): 16042fd

Update image_to_caption.py

Browse files
Files changed (1) hide show
  1. image_to_caption.py +2 -2
image_to_caption.py CHANGED
@@ -481,8 +481,8 @@ def generate_caption(image_path, save_directory, q):
481
  try:
482
  load_model()
483
 
484
- filename = os.path.basename(image_path)
485
- caption_file_path = os.path.join(save_directory, f"{filename}_caption.txt")
486
 
487
  # Kiểm tra các lựa chọn của người dùng
488
  if os.path.exists(caption_file_path):
 
481
  try:
482
  load_model()
483
 
484
+ filename = os.path.splitext(os.path.basename(image_path))[0]
485
+ caption_file_path = os.path.join(save_directory, f"{filename}.txt")
486
 
487
  # Kiểm tra các lựa chọn của người dùng
488
  if os.path.exists(caption_file_path):