fix: Update depth anything node default to v2

This commit is contained in:
blessedcoolant 2024-07-31 23:51:18 +05:30
parent 08def3da95
commit 332bc9da5b
2 changed files with 140 additions and 273 deletions

View File

@ -614,7 +614,7 @@ class DepthAnythingImageProcessorInvocation(ImageProcessorInvocation):
"""Generates a depth map based on the Depth Anything algorithm""" """Generates a depth map based on the Depth Anything algorithm"""
model_size: DEPTH_ANYTHING_MODEL_SIZES = InputField( model_size: DEPTH_ANYTHING_MODEL_SIZES = InputField(
default="small", description="The size of the depth model to use" default="small_v2", description="The size of the depth model to use"
) )
resolution: int = InputField(default=512, ge=1, description=FieldDescriptions.image_res) resolution: int = InputField(default=512, ge=1, description=FieldDescriptions.image_res)

File diff suppressed because one or more lines are too long