vahe1994 1 년 전
부모
커밋
8418cc5d62
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/petals/server/from_pretrained.py

+ 3 - 1
src/petals/server/from_pretrained.py

@@ -79,7 +79,9 @@ def load_pretrained_block(
         cache_dir=cache_dir,
         max_disk_space=max_disk_space,
     )
-    print("now printing", block)
+    print(model_name,block_prefix,revision,token,cache_dir,max_disk_space)
+
+    print("now printing", state_dict)
     for param_name, _ in block.named_parameters():
         assert param_name in state_dict, f"{param_name} not in state dict"
         param = state_dict[param_name]