You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if arch_name == 'depthanything-large':
model = DepthAnything(**model_kwargs['vitl']).to(device)
elif arch_name == 'depthanything-base':
model = DepthAnythingV2(**model_kwargs['vitb']).to(device)
This made me very confused because it's suggesting using the large model actually is depth anything v1 large while i was expecting the v2 large.
Is that correct ?
If it is correct i suggest renaming arch names for including v1 or v2 in it.
The text was updated successfully, but these errors were encountered:
In the actual infer.py we can read :
Load model
This made me very confused because it's suggesting using the large model actually is depth anything v1 large while i was expecting the v2 large.
Is that correct ?
If it is correct i suggest renaming arch names for including v1 or v2 in it.
The text was updated successfully, but these errors were encountered: