Views
No views yet
safetensorsso101-block-horizontal-layComb12 datasettrain_config.json, config.json1from huggingface_hub import hf_hub_download
2import safetensors.torch as storch
3import torch
4
5# Load model weights
6model_path = hf_hub_download("tshiamor/diffussion_so101-block-horizontal-layComb12", "model.safetensors")
7state_dict = storch.load_file(model_path)
8
9# You can now load state_dict into your model architecture