Skip to content

Commit a70d7b5

Browse files
committed
remove extra print
1 parent 8ecc2fa commit a70d7b5

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

torchchat/cli/convert_hf_checkpoint.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,6 @@ def convert_hf_checkpoint(
309309
model_name: Optional[str] = None,
310310
remove_bin_files: bool = False,
311311
):
312-
print(model_name)
313-
print("***********************")
314312
if "llava" in model_name:
315313
convert_llava_checkpoint(model_dir=model_dir)
316314
else:

torchchat/cli/download.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,10 @@ def download_and_convert(
8080
# allows recovery in the event that the download or conversion
8181
# fails unexpectedly.
8282
temp_dir = models_dir / "downloads" / model_config.name
83-
# temp_dir = Path("/home/gasoonjia") / "downloads" / model_config.name
84-
8583
if os.path.isdir(temp_dir):
8684
shutil.rmtree(temp_dir)
8785
os.makedirs(temp_dir, exist_ok=True)
8886

89-
print("**************************************************")
90-
print("**************************************************")
91-
print("temp dir: ", temp_dir)
92-
9387
try:
9488
if (
9589
model_config.distribution_channel

0 commit comments

Comments
 (0)