MCPcopy Create free account

hub / github.com/ZZongzheng0918/TA-VLA / types & classes

Types & classes131 in github.com/ZZongzheng0918/TA-VLA

↓ 16 callersClassTrainConfig
src/openpi/training/config.py:512
↓ 12 callersClassDataConfig
src/openpi/training/config.py:68
↓ 6 callersClassAssetsConfig
Determines the location of assets (e.g., norm stats) that will be used to set up the data pipeline. These assets will be replicated inside the ch
src/openpi/training/config.py:41
↓ 5 callersClassConfig
src/openpi/models/gemma.py:45
↓ 5 callersClassLeRobotAlohaDataConfig
src/openpi/training/config.py:216
↓ 4 callersClassCheckpoint
Load a policy from a trained checkpoint.
scripts/serve_policy.py:24
↓ 4 callersClassLeRobotLiberoDataConfig
This config is used to configure transforms that are applied at various parts of the data pipeline. For your own dataset, you can copy this c
src/openpi/training/config.py:269
↓ 3 callersClassLeRobotTavlaDataConfig
src/openpi/training/config.py:343
↓ 3 callersClassModelTransformFactory
Creates model transforms for standard pi0 models.
src/openpi/training/config.py:112
↓ 3 callersClassRMSNorm
src/openpi/models/gemma.py:113
↓ 3 callersClassRMSNorm
src/openpi/models/gemma_fast.py:88
↓ 3 callersClassTransformedDataset
src/openpi/training/data_loader.py:42
↓ 2 callersClassFakeDataConfig
src/openpi/training/config.py:190
↓ 2 callersClassMlpBlock
Transformer MLP / feed-forward block.
src/openpi/models/siglip.py:53
↓ 2 callersClassRemoveStrings
scripts/compute_norm_stats.py:18
↓ 2 callersClassSimpleDataConfig
src/openpi/training/config.py:199
↓ 2 callersClass_NormStatsDict
src/openpi/shared/normalize.py:121
↓ 1 callersClassAddPositionEmbs
Adds learned positional embeddings to the inputs. Attributes: posemb_init: positional embedding initializer.
src/openpi/models/vit.py:39
↓ 1 callersClassAttention
Attention module.
src/openpi/models/gemma.py:150
↓ 1 callersClassAttention
Attention module.
src/openpi/models/gemma_fast.py:125
↓ 1 callersClassCallbackHandler
A CheckpointHandler for calling an arbitrary function asynchronously. Only for saving, not for restoring.
src/openpi/training/checkpoints.py:127
↓ 1 callersClassCompositeTransform
A composite transform that applies a sequence of transforms in order.
src/openpi/transforms.py:63
↓ 1 callersClassCustomFormatter
scripts/train.py:34
↓ 1 callersClassDataLoaderImpl
src/openpi/training/data_loader.py:193
↓ 1 callersClassDatasetConfig
examples/aloha_real/convert_aloha_data_to_lerobot.py:23
↓ 1 callersClassDatasetConfig
examples/aloha_real/convert_self_data_to_lerobot.py:24
↓ 1 callersClassEmbedder
Embedder module.
src/openpi/models/gemma.py:127
↓ 1 callersClassEmbedder
Embedder module.
src/openpi/models/gemma_fast.py:102
↓ 1 callersClassEncoder
Transformer Model Encoder for sequence to sequence translation.
src/openpi/models/siglip.py:111
↓ 1 callersClassEncoder1DBlock
Single transformer encoder block (MHSA + MLP).
src/openpi/models/siglip.py:75
↓ 1 callersClassFakeDataset
src/openpi/training/data_loader.py:58
↓ 1 callersClassGroup
A group of transforms.
src/openpi/transforms.py:40
↓ 1 callersClassIdentityLayer
Identity layer, convenient for giving a name to an array.
src/openpi/models/vit.py:31
↓ 1 callersClassMAPHead
Multihead Attention Pooling.
src/openpi/models/siglip.py:164
↓ 1 callersClassMlpBlock
Transformer MLP / feed-forward block.
src/openpi/models/vit.py:66
↓ 1 callersClassNormStats
src/openpi/shared/normalize.py:10
↓ 1 callersClassObservation
Holds observations, i.e., inputs to the model. See `Observation.from_dict` to see the expected dictionary form. This is the format that shoul
src/openpi/models/model.py:81
↓ 1 callersClassPi0
src/openpi/models/pi0.py:149
↓ 1 callersClassPi0FAST
src/openpi/models/pi0_fast.py:128
↓ 1 callersClassRealEnv
Environment for real robot bi-manual manipulation Action space: [left_arm_qpos (6), # absolute joint position
examples/aloha_real/real_env.py:18
↓ 1 callersClassTorchDataLoader
src/openpi/training/data_loader.py:208
↓ 1 callersClass_Module
ViT model.
src/openpi/models/siglip.py:188
ClassAbsoluteActions
Repacks delta actions into absolute action space.
src/openpi/transforms.py:219
ClassActionChunkBroker
Wraps a policy to return action chunks one-at-a-time. Assumes that the first dimension of all action fields is the chunk size. A new inferen
packages/openpi-client/src/openpi_client/action_chunk_broker.py:10
ClassAdamW
AdamW optimizer.
src/openpi/training/optimizer.py:66
ClassAgent
An Agent is the thing with agency, i.e. the entity that makes decisions. Agents receive observations about the state of the world, and return act
packages/openpi-client/src/openpi_client/runtime/agent.py:4
ClassAlohaInputs
Inputs for the Aloha policy. Expected inputs: - images: dict[name, img] where img is [channel, height, width]. name must be in EXPECTED_CAMER
src/openpi/policies/aloha_policy.py:25
ClassAlohaOutputs
Outputs for the Aloha policy.
src/openpi/policies/aloha_policy.py:97
ClassAlohaRealEnvironment
An environment for an Aloha robot on real hardware.
examples/aloha_real/env.py:11
ClassAlohaSimEnvironment
An environment for an Aloha robot in simulation.
examples/aloha_sim/env.py:9
ClassArgs
Arguments for the serve_policy script.
scripts/serve_policy.py:39
ClassArgs
examples/aloha_sim/main.py:15
ClassArgs
examples/simple_client/main.py:21
ClassArgs
examples/libero/main.py:22
ClassArgs
examples/aloha_real/main.py:14
ClassArgs
examples/droid/main.py:27
ClassBaseModel
Base class for all model implementations. Specific models should inherit from this class. They should call super().__init__() to initialize the sh
src/openpi/models/model.py:270
ClassBaseModelConfig
Configuration shared by all models. Specific models should inherit from this class, and implement the `create` method to create the corresponding
src/openpi/models/model.py:225
ClassBasePolicy
packages/openpi-client/src/openpi_client/base_policy.py:5
ClassBlock
Transformer block.
src/openpi/models/gemma.py:276
ClassBlock
Transformer block.
src/openpi/models/gemma_fast.py:228
ClassCallback
src/openpi/training/checkpoints.py:123
ClassCallbackRestore
src/openpi/training/checkpoints.py:154
ClassCallbackSave
src/openpi/training/checkpoints.py:149
ClassCheckpointWeightLoader
Loads an entire set of weights from a checkpoint. Compatible with: trained checkpoints: example: "./checkpoints/<config>/<exp>/<ste
src/openpi/training/weight_loaders.py:38
ClassCosineDecaySchedule
Cosine decay schedule with warmup.
src/openpi/training/optimizer.py:16
ClassDataConfigFactory
src/openpi/training/config.py:154
ClassDataLoader
Interface for a data loader.
src/openpi/training/data_loader.py:31
ClassDataTransformFn
src/openpi/transforms.py:24
ClassDataset
Interface for a dataset with random access.
src/openpi/training/data_loader.py:21
ClassDefault
Use the default policy for the given environment.
scripts/serve_policy.py:34
ClassDeltaActions
Repacks absolute actions into delta action space.
src/openpi/transforms.py:197
ClassDroidInputs
src/openpi/policies/droid_policy.py:31
ClassDroidOutputs
src/openpi/policies/droid_policy.py:76
ClassEffortType
tokens:\n |<------------prefix(w=2048)----------->|<-----------suffix(w=1024)------------->|\n |<-images->|<-language->|<-effort(llm)->|<
src/openpi/shared/effort_type.py:3
ClassEinsum
src/openpi/models/gemma_fast.py:77
ClassEinsum
Einsum with LoRA support. Can be used as a drop-in replacement for the Gemma Einsum.
src/openpi/models/lora.py:33
ClassEncoder
Transformer Model Encoder for sequence to sequence translation. Attributes: num_layers: number of layers mlp_dim: dimension of the ml
src/openpi/models/vit.py:160
ClassEncoder1DBlock
Transformer encoder layer. Attributes: inputs: input data. mlp_dim: dimension of the mlp on top of attention block. dtype: the
src/openpi/models/vit.py:104
ClassEnvMode
Supported environments.
scripts/serve_policy.py:14
ClassEnvMode
Supported environments.
examples/simple_client/main.py:11
ClassEnvironment
An Environment represents the robot and the environment it inhabits. The primary contract of environments is that they can be queried for observa
packages/openpi-client/src/openpi_client/runtime/environment.py:4
ClassExtractFASTActions
src/openpi/transforms.py:278
ClassFASTTokenizer
src/openpi/models/tokenizer.py:39
ClassFeedForward
Feed forward module.
src/openpi/models/gemma.py:245
ClassFeedForward
Feed forward module.
src/openpi/models/lora.py:88
ClassGroupFactory
src/openpi/training/config.py:105
ClassImageRecorder
examples/aloha_real/robot_utils.py:19
ClassInjectDefaultPrompt
src/openpi/transforms.py:105
ClassLRScheduleConfig
src/openpi/training/optimizer.py:11
ClassLiberoInputs
This class is used to convert inputs to the model to the expected format. It is used for both training and inference. For your own dataset,
src/openpi/policies/libero_policy.py:30
ClassLiberoOutputs
This class is used to convert outputs from the model back the the dataset specific format. It is used for inference only. For your own d
src/openpi/policies/libero_policy.py:104
ClassLoRAConfig
Configuration for LoRA.
src/openpi/models/lora.py:12
ClassModelType
Supported model types.
src/openpi/models/model.py:27
ClassModule
Transformer model, supporting a mixture of different weights for different tokens.
src/openpi/models/gemma.py:329
ClassModule
gemma model.
src/openpi/models/gemma_fast.py:279
ClassNoOpWeightLoader
src/openpi/training/weight_loaders.py:32
ClassNormalize
src/openpi/transforms.py:115
ClassOptimizerConfig
src/openpi/training/optimizer.py:57
ClassPaliGemmaWeightLoader
Loads weights from the official PaliGemma checkpoint. This will overwrite existing weights with similar names while keeping all extra weights int
src/openpi/training/weight_loaders.py:59
next →1–100 of 131, ranked by callers