Varu96 commited on
Commit
435eee3
·
verified ·
1 Parent(s): 0ce6e9d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -10,6 +10,12 @@ from llava.model.builder import load_pretrained_model
10
  from llava.mm_utils import get_model_name_from_path
11
  from llava.eval.run_llava import eval_model
12
 
 
 
 
 
 
 
13
  # Load the LLaVA model and processor
14
  llava_model_path = "/My_new_LLaVA/llava-fine_tune_model"
15
 
 
10
  from llava.mm_utils import get_model_name_from_path
11
  from llava.eval.run_llava import eval_model
12
 
13
+ os.chdir("My_new_LLaVA/LLaVA") # Update this if needed
14
+
15
+ # Verify the current working directory
16
+ print("Current Working Directory:", os.getcwd())
17
+
18
+
19
  # Load the LLaVA model and processor
20
  llava_model_path = "/My_new_LLaVA/llava-fine_tune_model"
21