trellis-2-mrp-mlx/trellis2/models/__init__.py

95 lines
3.2 KiB
Python

import importlib
from typing import Optional
from ..model_revisions import revision_for_repo
__attributes = {
# Sparse Structure
'SparseStructureEncoder': 'sparse_structure_vae',
'SparseStructureDecoder': 'sparse_structure_vae',
'SparseStructureFlowModel': 'sparse_structure_flow',
# SLat Generation
'SLatFlowModel': 'structured_latent_flow',
'ElasticSLatFlowModel': 'structured_latent_flow',
# SC-VAEs
'SparseUnetVaeEncoder': 'sc_vaes.sparse_unet_vae',
'SparseUnetVaeDecoder': 'sc_vaes.sparse_unet_vae',
'FlexiDualGridVaeEncoder': 'sc_vaes.fdg_vae',
'FlexiDualGridVaeDecoder': 'sc_vaes.fdg_vae'
}
__submodules = []
__all__ = list(__attributes.keys()) + __submodules
def __getattr__(name):
if name not in globals():
if name in __attributes:
module_name = __attributes[name]
module = importlib.import_module(f".{module_name}", __name__)
globals()[name] = getattr(module, name)
elif name in __submodules:
module = importlib.import_module(f".{name}", __name__)
globals()[name] = module
else:
raise AttributeError(f"module {__name__} has no attribute {name}")
return globals()[name]
def from_pretrained(
path: str,
*,
revision: Optional[str] = None,
cache_dir: Optional[str] = None,
local_files_only: bool = False,
**kwargs,
):
"""
Load a model from a pretrained checkpoint.
Args:
path: The path to the checkpoint. Can be either local path or a Hugging Face model name.
NOTE: config file and model file should take the name f'{path}.json' and f'{path}.safetensors' respectively.
**kwargs: Additional arguments for the model constructor.
"""
import os
import json
from safetensors.torch import load_file
is_local = os.path.exists(f"{path}.json") and os.path.exists(f"{path}.safetensors")
if is_local:
config_file = f"{path}.json"
model_file = f"{path}.safetensors"
else:
from huggingface_hub import hf_hub_download
path_parts = path.split('/')
repo_id = f'{path_parts[0]}/{path_parts[1]}'
model_name = '/'.join(path_parts[2:])
revision = revision_for_repo(repo_id, revision)
hub_kwargs = {
"revision": revision,
"cache_dir": cache_dir,
"local_files_only": local_files_only,
}
config_file = hf_hub_download(repo_id, f"{model_name}.json", **hub_kwargs)
model_file = hf_hub_download(repo_id, f"{model_name}.safetensors", **hub_kwargs)
with open(config_file, 'r') as f:
config = json.load(f)
model = __getattr__(config['name'])(**config['args'], **kwargs)
model.load_state_dict(load_file(model_file), strict=False)
return model
# For Pylance
if __name__ == '__main__':
from .sparse_structure_vae import SparseStructureEncoder, SparseStructureDecoder
from .sparse_structure_flow import SparseStructureFlowModel
from .structured_latent_flow import SLatFlowModel, ElasticSLatFlowModel
from .sc_vaes.sparse_unet_vae import SparseUnetVaeEncoder, SparseUnetVaeDecoder
from .sc_vaes.fdg_vae import FlexiDualGridVaeEncoder, FlexiDualGridVaeDecoder