mirror of
https://github.com/deepseek-ai/DreamCraft3D.git
synced 2025-02-23 14:28:55 -05:00
12 lines
218 B
Python
12 lines
218 B
Python
|
from dataclasses import dataclass
|
||
|
|
||
|
import torch
|
||
|
import torch.nn.functional as F
|
||
|
|
||
|
import threestudio
|
||
|
from threestudio.models.renderers.base import VolumeRenderer
|
||
|
|
||
|
|
||
|
class DeferredVolumeRenderer(VolumeRenderer):
|
||
|
pass
|