wintergw commited on
Commit
9f41e26
·
verified ·
1 Parent(s): 1b3bc2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -69,15 +69,18 @@ repo_dir = snapshot_download(
69
  force_download=True # Forces redownload
70
  )
71
 
 
72
  # Step 2: Change the working directory to the downloaded snapshot directory
73
  # This ensures that all relative paths inside your private space code are correctly resolved.
74
  os.chdir(repo_dir)
75
 
 
 
76
  # Add repo directory to sys.path
77
  sys.path.append(repo_dir)
78
 
79
 
80
- print("Files in Model Directory:", os.listdir(repo_dir))
81
 
82
 
83
 
 
69
  force_download=True # Forces redownload
70
  )
71
 
72
+ print("Files in Model Directory:", os.listdir(repo_dir))
73
  # Step 2: Change the working directory to the downloaded snapshot directory
74
  # This ensures that all relative paths inside your private space code are correctly resolved.
75
  os.chdir(repo_dir)
76
 
77
+ print("Files in Model Directory:", os.listdir(repo_dir))
78
+
79
  # Add repo directory to sys.path
80
  sys.path.append(repo_dir)
81
 
82
 
83
+
84
 
85
 
86