Spaces:
Running
on
Zero
Running
on
Zero
File size: 233 Bytes
eebae35 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from dataclasses import dataclass
import torch
from diffusers.utils import BaseOutput
@dataclass
class DetailGen3DPipelineOutput(BaseOutput):
r"""
Output class for DetailGen3D pipelines.
"""
samples: torch.Tensor
|