Merge 964629b82335db782c41ae8286fcfaefba307356 into cbe2837e506ffb5942fda754d0f0bccf586363a8

This commit is contained in:
Rajko Stojadinovic 2025-06-19 02:54:28 +02:00 committed by GitHub
commit 5fb19f3b90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -32,7 +32,8 @@ from transformers import (
Dinov2Model, Dinov2Model,
Dinov2Config, Dinov2Config,
) )
from ....utils import log import logging
log = logging.getLogger(__name__)
def get_1d_sincos_pos_embed_from_grid(embed_dim, pos): def get_1d_sincos_pos_embed_from_grid(embed_dim, pos):
""" """

View File

@ -1565,7 +1565,7 @@ class Hy3DBPT:
"required": { "required": {
"trimesh": ("TRIMESH",), "trimesh": ("TRIMESH",),
"enable_bpt": ("BOOLEAN", {"default": True}), "enable_bpt": ("BOOLEAN", {"default": True}),
"seed": ("INT", {"default": 42, "min": 0, "max": 0xffffffffffffffff}), "seed": ("INT", {"default": 42, "min": 0, "max": 0xffffffff}),
"temperature": ("FLOAT", {"default": 0.5}), "temperature": ("FLOAT", {"default": 0.5}),
"pc_num": ("INT", {"default": 4096, "min": 1024, "max": 8192, "step": 1024}), "pc_num": ("INT", {"default": 4096, "min": 1024, "max": 8192, "step": 1024}),
"samples": ("INT", {"default": 100000}) "samples": ("INT", {"default": 100000})