feat(vla): vla框架初始化

This commit is contained in:
gouhanke
2026-02-03 14:18:30 +08:00
parent c1ce560b32
commit 57acfd645f
40 changed files with 443 additions and 63 deletions

View File

@@ -0,0 +1,6 @@
# Backbone models
from .siglip import SigLIPBackbone
from .clip import CLIPBackbone
from .dinov2 import DinoV2Backbone
__all__ = ["SigLIPBackbone", "CLIPBackbone", "DinoV2Backbone"]

View File

@@ -0,0 +1 @@
# CLIP Backbone 实现

View File

@@ -0,0 +1 @@
# DinoV2 Backbone 实现

View File

@@ -0,0 +1 @@
# SigLIP Backbone 实现

View File

@@ -0,0 +1,5 @@
# Action Head models
from .diffusion import DiffusionActionHead
from .act import ACTHead
__all__ = ["DiffusionActionHead", "ACTHead"]

View File

@@ -0,0 +1 @@
# ACT-VAE Action Head 实现

View File

@@ -0,0 +1 @@
# Diffusion Policy Action Head 实现

View File

@@ -0,0 +1,5 @@
# Projector models
from .mlp import MLPProjector
from .perceiver import PerceiverResampler
__all__ = ["MLPProjector", "PerceiverResampler"]

View File

@@ -0,0 +1 @@
# MLP Projector 实现

View File

@@ -0,0 +1 @@
# Perceiver Resampler 实现