Skip to content

Commit 19cda10

Browse files
committed
Lint
1 parent ed0c43d commit 19cda10

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/models/smollm2/convert_weights.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,10 @@ def convert_weights(input_dir: str, output_file: str) -> None:
5959
print("Loading checkpoint...")
6060
sd = checkpointer.load_checkpoint()
6161
print("Converting checkpoint...")
62-
breakpoint()
6362
sd = smollm_tune_to_meta(sd["model"])
6463
print("Saving checkpoint...")
6564
torch.save(sd, output_file)
66-
print(f"Done.")
65+
print("Done.")
6766

6867

6968
def main():

0 commit comments

Comments
 (0)