在运行z_image_turbo文生图工作流时,在加载CLIP这一步出现问题。
“
加载CLIPError(s) in loading state_dict for Llama2:size mismatch for model.embed_tokens.weight: copying a param with shape torch.Size([151936, 2560]) from checkpoint, the shape in current model is torch.Size([128256, 4096]).size mismatch for model.layers.0.self_attn.q_proj.weight: copying a param with shape torch.Size([4096, 2560]) from checkpoint, the shape in current model is torch.Size([4096, 4096]).size mismatch for model.layers.0.self_attn.k_proj.weight: copying a param with shape torch.Size([1024, 2560]) from checkpoint, the shape in current model is torch.Size([1024, 4096]).size mismatch for model.layers.0.self_attn.v_proj.weight: copying a param with shape torch.Size([1024, 2560]) from checkpoint, the shape in current model is torch.Size([1024, 4096]).size mismatch for model.layers.0.self_attn.o_proj.weight: copying a param with shape torch.Size([2560, 4096]) from checkpoint, the shape in current model is torch.Size([4096, 4096]).size mismatch for model.layers.0.mlp.gate_proj.weight: copying a param with shape torch.Size([9728, 2560]) from checkpoint, the shape in current model is torch.Size([14336, 4096]).size mismatch for model.layers.0.mlp.up_proj.weight: copying a param with shape torch.Size([9728, 2560]) from checkpoint, the shape in current model is torch.Size([14336, 4096]).size mismatch for model.layers.0.mlp.down_proj.weight: copying a param with shape torch.Size([2560, 9728]) from checkpoint, the shape in current model is torch.Size([4096, 14336]).size mismatch for model.layers.0.input_layernorm.weight: copying a param with shape torch.Size([2560]) from checkpoint, the shape in current model is torch.Size([4096]).size mismatch for model.layers.0.post_attention_layernorm.weight: copying a param with shape torch.Size([2560]) from checkpoint, the shape in current model is torch.Size([4096]).size mismatch for model.layers.1.self_attn.q_proj.weight: copying a param with shape torch.Size([4096, 2560]) from checkpoint, the shape in current model is torch.Size([4096, 4096]).size mismatch for model.layers.1.self_attn.k_proj.weight: copying a param with shape torch.Size([1024, 2560]) from checkpoint, the shape in current model is torch.Size([1024, 4096]).size mismatch for model.layers.1.self_attn.v_proj.weight: copying a param with shape torch.Size([1024, 2560]) from checkpoint, the shape in current model is torch.Size([1024, 4096]).size mismatch for model.layers.1.self_attn.o_proj.weight: copying a param with shape torch.Size([2560, 4096]) from checkpoint, the shape in current model is torch.Size([4096, 4096]).size mismatch for model.layers.1.mlp.gate_proj.weight: copying a param with shape torch.Size([9728, 2560]) from checkpoint, the shape in current model is torch.Size([14336, 4096]).size mismatch for model.layers.1.mlp.up_proj.weight: copying a param with shape torch.Size([9728, 2560]) from checkpoint, the shape in current model is torch.Size([14336, 4096]).size mismatch for model.layers.1.mlp.down_proj.weight: copying a param with shape torch.Size([2560, 9728]) from checkpoint, the shape in current model is torch.Size([4096, 14336]).size mismatch for model.layers.1.input_layernorm.weight: copying a param with shape torch.Size([2560]) from checkpoint, the shape in current model is torch.Size([4096]).size mismatch for model.layers.1.post_attention_layernorm.weight: copying a param with shape torch.Size([2560]) from checkpoint, the shape in current model is torch.Size([4096]).size mismatch for model.layers.2.self_attn.q_proj.weight: copying a param with shape torch.Size([4096, 2560]) from checkpoint, the shape in current model is torch.Size([4096, 4096]).size mismatch for model.layers.2.self_attn.k_proj.weight: copying a param with shape torch.Size([1024, 2560]) from checkpoint, the shape in current model is torch.Size([1024, 4096]).size mismatch for model.layers.2.self_attn.v_proj.weight: copying a param with shape torch.Size([1024, 2560]) from checkpoint, the shape in current model is torch.Size([1024, 4096]).size mismatch for model.layers.2.self_attn.o_proj.weight: copying a param with shape torch.Size([2560, 4096]) from checkpoint, the shape in current model is torch.Size([4096, 4096]).size mismatch for model.layers.2.mlp.gate_proj.weight: copying a param with shape torch.Size([9728, 2560]) from checkpoint, the shape in current model is torch.Size([14336, 4096]).size mismatch for model.layers.2.mlp.up_proj.weight: copying a param with shape torch.Size([9728, 2560]) from checkpoint, the shape in current model is torch.Size([14336, 4096]).size mismatch for model.layers.2.mlp.down_proj.weight: copying a param with shape torch.Size([2560, 9728]) from checkpoint, the shape in current model is torch.Size([4096, 14336]).
size mismatch for model.layers.2.input_layernorm.weight: copying a param with shape torch.Size([2560]) from checkpoint, the shape in current model is torch.Size([4096]). ”
|