We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b80c8e commit ecbfbe9Copy full SHA for ecbfbe9
vllm/transformers_utils/s3_utils.py
@@ -145,7 +145,8 @@ def pull_files(self,
145
return
146
147
for file in files:
148
- destination_file = self.dir + file.removeprefix(base_dir)
+ destination_file = os.path.join(self.dir,
149
+ file.removeprefix(base_dir))
150
local_dir = Path(destination_file).parent
151
os.makedirs(local_dir, exist_ok=True)
152
self.s3.download_file(bucket_name, file, destination_file)
0 commit comments