Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,20 @@
|
|
1 |
-
|
|
|
2 |
|
|
|
3 |
model = DepthAnythingForDepthEstimation.from_pretrained("depth-anything/Depth-Anything-V2-Small-hf")
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from transformers import DepthAnythingForDepthEstimation
|
3 |
|
4 |
+
# 加载模型
|
5 |
model = DepthAnythingForDepthEstimation.from_pretrained("depth-anything/Depth-Anything-V2-Small-hf")
|
6 |
+
backbone = model.backbone
|
7 |
+
config = backbone.config
|
8 |
+
|
9 |
+
# 定义获取主干信息的函数
|
10 |
+
def get_backbone_info():
|
11 |
+
info = f"主干: {backbone.__class__.__name__}\n"
|
12 |
+
info += f"隐藏层大小: {config.hidden_size}\n"
|
13 |
+
info += f"层数: {config.num_hidden_layers}\n"
|
14 |
+
info += f"注意力头数: {config.num_attention_heads}\n"
|
15 |
+
info += f"补丁大小: {config.patch_size}\n"
|
16 |
+
return info
|
17 |
+
|
18 |
+
# 创建 Gradio 接口
|
19 |
+
demo = gr.Interface(fn=get_backbone_info, inputs=[], outputs="text")
|
20 |
+
demo.launch()
|