iFlyBot commited on
Commit
62bb017
·
1 Parent(s): 9e022f5

fix README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -2
README.md CHANGED
@@ -7,7 +7,19 @@ license: mit
7
 
8
  ## Introduction
9
 
10
- IflyBotVLM is a 8B open-source vision-language model(VLM) designed for embodied brain.
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  ![image/png](https://huggingface.co/datasets/IflyBot/IflyBotVLM-Repo/resolve/main/images/radar_performance.png)
13
 
@@ -15,7 +27,7 @@ IflyBotVLM is a 8B open-source vision-language model(VLM) designed for embodied
15
 
16
  IflyBotVLM inherits the robust, three-stage "ViT-Projector-LLM" paradigm from established Vision-Language Models. It integrates a dedicated, incrementally pre-trained Visual Encoder with an advanced Language Model via a simple, randomly initialized MLP projector for efficient feature alignment.
17
 
18
- The core enhancement lies in the ViT's Positional Encoding (PE) layer. Instead of relying solely on the original $448$ dimension PE, we employ Bicubic Interpolation to intelligently upsample the learned positional embeddings from $448$ to an enriched dimension of $896$. This novel approach, termed Dimension-Expanded Position Embedding (DEPE), provides a significantly more nuanced spatial context vector for each visual token. This dimensional enrichment allows the model to capture more complex positional and relative spatial information without increasing the sequence length, thereby enhancing the model's ability to perform fine-grained visual reasoning and detailed localization tasks.
19
 
20
  ![image/png](https://huggingface.co/datasets/IflyBot/IflyBotVLM-Repo/resolve/main/images/architecture.png)
21
 
 
7
 
8
  ## Introduction
9
 
10
+ We introduce IflyBotVLM, a general-purpose Vision-Language-Model (VLM) specifically engineered for the domain of Embodied Intelligence. The primary objective of this model is to bridge the cross-modal semantic gap between high-dimensional environmental perception and low-level robot motion control. It achieves this by abstracting complex scene information into an "Operational Language" that is body-agnostic and transferable, thus enabling seamless perception-to-action closed-loop coordination.
11
+
12
+ The architecture of IflyBotVLM is designed to realize four critical functional capabilities in the embodied domain:
13
+
14
+ Spatial Understanding and Metric: Provides the model with the capacity to understand spatial relationships and perform relative position estimation among objects in the environment.
15
+
16
+ Interactive Target Grounding: Supports diverse grounding mechanisms, including 2D/3D object detection in the visual modality, language-based object and spatial referring, and the prediction of critical object affordance regions.
17
+
18
+ Action Abstraction and Control Parameter Generation: Generates outputs directly relevant to the manipulation domain, providing grasp poses and manipulation trajectories.
19
+
20
+ Task Planning: Leveraging the current scene comprehension, this module performs multi-step prediction to decompose complex tasks into a sequence of atomic skills, fundamentally supporting the robust execution of long-horizon tasks.
21
+
22
+ We anticipate that IflyBotVLM will serve as an efficient and scalable foundation model, driving the advancement of embodied AI from single-task capabilities toward generalist intelligent agents.
23
 
24
  ![image/png](https://huggingface.co/datasets/IflyBot/IflyBotVLM-Repo/resolve/main/images/radar_performance.png)
25
 
 
27
 
28
  IflyBotVLM inherits the robust, three-stage "ViT-Projector-LLM" paradigm from established Vision-Language Models. It integrates a dedicated, incrementally pre-trained Visual Encoder with an advanced Language Model via a simple, randomly initialized MLP projector for efficient feature alignment.
29
 
30
+ The core enhancement lies in the ViT's Positional Encoding (PE) layer. Instead of relying solely on the original 448 dimension PE, we employ Bicubic Interpolation to intelligently upsample the learned positional embeddings from 448 to an enriched dimension of 896. This novel approach, termed Dimension-Expanded Position Embedding (DEPE), provides a significantly more nuanced spatial context vector for each visual token. This dimensional enrichment allows the model to capture more complex positional and relative spatial information without increasing the sequence length, thereby enhancing the model's ability to perform fine-grained visual reasoning and detailed localization tasks.
31
 
32
  ![image/png](https://huggingface.co/datasets/IflyBot/IflyBotVLM-Repo/resolve/main/images/architecture.png)
33