Views
No views yet
finetune_2_pytorch_model.bin (🌟 Production Candidate)finetune_1_pytorch_model.bin (Experimental / Deprecated)finetune_2.causal_vae_checkpoint).finetune_2) acts as the denoising backbone, predicting the latent patches over time based on text prompts (e.g., "Draw a triangle with 3 angles").1import torch
2
3# Path to the best performing checkpoint
4model_path = "finetune_2_pytorch_model.bin"
5
6# Load weights (assuming standard DiT structure)
7state_dict = torch.load(model_path, map_location="cpu")
8
9print(f"✅ Loaded DiT Backbone: {model_path}")
10print(f"Tensor keys found: {len(state_dict.keys())}")