Upload 83 files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +4 -0
- .gitignore +2 -0
- LICENSE.md +13 -0
- README.md +417 -3
- ckpt/__init__.py +0 -0
- ckpt/delta_ckpt/nextgpt/7b_tiva_v0/__init__.py +0 -0
- ckpt/pretrained_ckpt/__init__.py +0 -0
- ckpt/pretrained_ckpt/imagebind_ckpt/__init__.py +0 -0
- ckpt/pretrained_ckpt/imagebind_ckpt/huge/__init__.py +0 -0
- ckpt/pretrained_ckpt/prepare_vicuna.md +80 -0
- ckpt/pretrained_ckpt/vicuna_ckpt/__init__.py +0 -0
- code/__init__.py +0 -0
- code/bot.png +0 -0
- code/config/__init__.py +41 -0
- code/config/base.yaml +45 -0
- code/config/stage_1.yaml +10 -0
- code/config/stage_2.yaml +10 -0
- code/config/stage_3.yaml +18 -0
- code/dataset/T+X-T_instruction_dataset.py +63 -0
- code/dataset/T-T+X_instruction_dataset.py +49 -0
- code/dataset/__init__.py +37 -0
- code/dataset/audiocap_dataset.py +55 -0
- code/dataset/base_dataset.py +55 -0
- code/dataset/catalog.py +125 -0
- code/dataset/cc3m_dataset.py +45 -0
- code/dataset/concat_dataset.py +38 -0
- code/dataset/preprocess_dataset.py +144 -0
- code/dataset/samplers.py +221 -0
- code/dataset/utils.py +37 -0
- code/dataset/webvid_dataset.py +44 -0
- code/demo_app.py +516 -0
- code/dsconfig/stage_1.json +58 -0
- code/dsconfig/stage_2.json +58 -0
- code/dsconfig/stage_3.json +58 -0
- code/header.py +39 -0
- code/inference.py +175 -0
- code/model/ImageBind/CODE_OF_CONDUCT.md +80 -0
- code/model/ImageBind/CONTRIBUTING.md +31 -0
- code/model/ImageBind/LICENSE +437 -0
- code/model/ImageBind/README.md +155 -0
- code/model/ImageBind/__init__.py +2 -0
- code/model/ImageBind/bpe/bpe_simple_vocab_16e6.txt.gz +3 -0
- code/model/ImageBind/data.py +375 -0
- code/model/ImageBind/model_card.md +94 -0
- code/model/ImageBind/models/__init__.py +0 -0
- code/model/ImageBind/models/helpers.py +141 -0
- code/model/ImageBind/models/imagebind_model.py +521 -0
- code/model/ImageBind/models/multimodal_preprocessors.py +687 -0
- code/model/ImageBind/models/transformer.py +284 -0
- code/model/ImageBind/requirements.txt +10 -0
.gitattributes
CHANGED
@@ -33,3 +33,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
data/IT_data/T-T+X_data/audio_t2x.json filter=lfs diff=lfs merge=lfs -text
|
37 |
+
data/IT_data/T-T+X_data/image_t2x.json filter=lfs diff=lfs merge=lfs -text
|
38 |
+
data/IT_data/T-T+X_data/video_t2x.json filter=lfs diff=lfs merge=lfs -text
|
39 |
+
figures/demo.png filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
__pycache__/
|
2 |
+
.idea
|
LICENSE.md
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
BSD 3-Clause License
|
2 |
+
|
3 |
+
Copyright 2023 Shengqiong Wu All rights reserved.
|
4 |
+
|
5 |
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
6 |
+
|
7 |
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
8 |
+
|
9 |
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
10 |
+
|
11 |
+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
12 |
+
|
13 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
README.md
CHANGED
@@ -1,3 +1,417 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# <img src="code/nextgpt.png" style="width: 5%"> NExT-GPT: Any-to-Any Multimodal LLM
|
2 |
+
[Shengqiong Wu](https://chocowu.github.io/), [Hao Fei](http://haofei.vip/)*, [Leigang Qu](#), [Wei Ji](https://jiwei0523.github.io/), and [Tat-Seng Chua](https://www.chuatatseng.com/).
|
3 |
+
(*Correspondence )
|
4 |
+
|
5 |
+
**[NExT++](https://www.nextcenter.org/), School of Computing, National University of Singapore**
|
6 |
+
|
7 |
+
-----
|
8 |
+
|
9 |
+
<a href='https://next-gpt.github.io/'><img src='https://img.shields.io/badge/Project-Page-Green'></a>
|
10 |
+
<a href='#'><img src='https://img.shields.io/badge/Demo-Page-purple'></a>
|
11 |
+
<a href='https://arxiv.org/pdf/2309.05519'><img src='https://img.shields.io/badge/Paper-PDF-orange'></a>
|
12 |
+
![License](https://img.shields.io/badge/License-BSD-blue.svg)
|
13 |
+
[![YouTube](https://badges.aleen42.com/src/youtube.svg)](https://www.youtube.com/watch?v=aqw2SCWeWD0)
|
14 |
+
|
15 |
+
|
16 |
+
This repository hosts the code, data and model weight of **NExT-GPT**, the first end-to-end MM-LLM that perceives input and generates output in arbitrary combinations (any-to-any) of text, image, video, and audio and beyond.
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
-----------
|
21 |
+
|
22 |
+
## 🎉 News
|
23 |
+
|
24 |
+
- [x] [2023.09.15] 🚀🚀 Release the code of NExT-GPT in version `7b_tiva_v0`.
|
25 |
+
- [x] [2023.09.27] 🔨🧩 Added modality-blended batch sampler .
|
26 |
+
- [x] [2023.10.01] 📢📢 Release the T2M instruction dataset.
|
27 |
+
- [x] [2023.10.04] 👏👏 Release the checkpoint of NExT-GPT in version [7b_tiva_v0](https://huggingface.co/ChocoWu/nextgpt_7b_tiva_v0) .
|
28 |
+
- [x] [2023.10.15] 🔨🚀 Update of NExT-GPT in version [7b_tiva_v0](https://huggingface.co/ChocoWu/nextgpt_7b_tiva_v0) .
|
29 |
+
|
30 |
+
|
31 |
+
## 👉 TODO
|
32 |
+
- [ ] Release MosIT data.
|
33 |
+
- [ ] Updating NExT-GPT in more types&sizes of LLMs.
|
34 |
+
- [ ] Empowering NExT-GPT with more modalities of inputs&outputs.
|
35 |
+
- [ ] ...
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
-----------
|
40 |
+
|
41 |
+
## Example Demos
|
42 |
+
Here we showcase examples generated from NExT-GPT.
|
43 |
+
For more examples, kindly visit the [webpage](https://next-gpt.github.io/), or the online live [demo](https://acc414b22d6839d28f.gradio.live).
|
44 |
+
|
45 |
+
|
46 |
+
https://github.com/NExT-GPT/NExT-GPT/assets/18722770/0c2b3d88-a533-4899-ab44-65580fe54538
|
47 |
+
|
48 |
+
|
49 |
+
https://github.com/NExT-GPT/NExT-GPT/assets/18722770/eb1319a6-38aa-4546-a96e-163207e7de93
|
50 |
+
|
51 |
+
|
52 |
+
https://github.com/NExT-GPT/NExT-GPT/assets/18722770/36bec0ad-9bad-4bcf-bc37-92b028f1bc6a
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
<span id='introduction'/>
|
57 |
+
|
58 |
+
## Brief Introduction
|
59 |
+
|
60 |
+
|
61 |
+
NExt-GPT is built on top of existing pre-trained LLM, multimodal encoder and SoTA diffusion models, with sufficient end-to-end instruction tuning.
|
62 |
+
|
63 |
+
<p align="center" width="100%">
|
64 |
+
<a target="_blank"><img src="figures/framework.png" alt="Video-LLaMA" style="width: 90%; min-width: 200px; display: block; margin: auto;"></a>
|
65 |
+
</p>
|
66 |
+
|
67 |
+
- **Multimodal Encoding Stage.** Leveraging established encoders to encode inputs in various modalities, where these representations are projected into language-like representations comprehensible to the LLM through a projection layer.
|
68 |
+
- **LLM Understanding and Reasoning Stage.** Harnessing an existing open-sourced LLM as the core to process input information for semantic understanding and reasoning. The LLM not only directly generates text tokens but also produces unique “modality signal” tokens that serve as instructions to dictate the decoding layers whether & what modal content to output correspondingly.
|
69 |
+
- **Multimodal Generation Stage.** Receiving the multimodal signals with specific instructions from LLM (if any), the Transformer-based output projection layers map the signal token representations into the ones that are understandable to following multimodal decoders.
|
70 |
+
|
71 |
+
|
72 |
+
For more technical details, kindly refer to the [paper](https://arxiv.org/pdf/2309.05519.pdf).
|
73 |
+
|
74 |
+
|
75 |
+
-----------
|
76 |
+
|
77 |
+
|
78 |
+
<span id='Usage'/>
|
79 |
+
|
80 |
+
## Getting Started
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
<span id='all_catelogue'/>
|
85 |
+
|
86 |
+
### Table of Contents:
|
87 |
+
* <a href='#Code Structure'>1. Code Structure</a>
|
88 |
+
* <a href='#Environment Preparation'>2. Environment Preparation </a>
|
89 |
+
* <a href='#Training on Your Own'>3. Training/Adapting NExt-GPT on Your Own</a>
|
90 |
+
* <a href='#Prepare Pre-trained Checkpoint'>3.1. Preparing Pre-trained Checkpoint</a>
|
91 |
+
* <a href='#Prepare Dataset'>3.2. Preparing Dataset </a>
|
92 |
+
* <a href='#Precompute Embeddings'>3.3. Precomputing Embeddings</a>
|
93 |
+
* <a href='#Train NExT-GPT'>3.4. Training NExT-GPT</a>
|
94 |
+
* <a href='#Run NExT-GPT System'>4. Running NExT-GPT System</a>
|
95 |
+
* <a href='#Prepare checkpoints'>4.1. Preparing checkpoints</a>
|
96 |
+
* <a href='#Deploy Demo System'>4.2. Deploying Demo System</a>
|
97 |
+
|
98 |
+
****
|
99 |
+
|
100 |
+
|
101 |
+
|
102 |
+
|
103 |
+
|
104 |
+
<span id='Code Structure'/>
|
105 |
+
|
106 |
+
### 1. Code Structure
|
107 |
+
|
108 |
+
```
|
109 |
+
├── figures
|
110 |
+
├── data
|
111 |
+
│ ├── T-X_pair_data
|
112 |
+
│ │ ├── audiocap # text-autio pairs data
|
113 |
+
│ │ │ ├── audios # audio files
|
114 |
+
│ │ │ └── audiocap.json # the audio captions
|
115 |
+
│ │ ├── cc3m # text-image paris data
|
116 |
+
│ │ │ ├── images # image files
|
117 |
+
│ │ │ └── cc3m.json # the image captions
|
118 |
+
│ │ └── webvid # text-video pairs data
|
119 |
+
│ │ │ ├── videos # video files
|
120 |
+
│ │ │ └── webvid.json # the video captions
|
121 |
+
│ ├── IT_data # instruction data
|
122 |
+
│ │ ├── T+X-T_data # text+[image/audio/video] to text instruction data
|
123 |
+
│ │ │ ├── alpaca # textual instruction data
|
124 |
+
│ │ │ ├── llava # visual instruction data
|
125 |
+
│ │ ├── T-T+X # synthesized text to text+[image/audio/video] instruction data
|
126 |
+
│ │ └── MosIT # Modality-switching Instruction Tuning instruction data
|
127 |
+
├── code
|
128 |
+
│ ├── config
|
129 |
+
│ │ ├── base.yaml # the model configuration
|
130 |
+
│ │ ├── stage_1.yaml # enc-side alignment training configuration
|
131 |
+
│ │ ├── stage_2.yaml # dec-side alignment training configuration
|
132 |
+
│ │ └── stage_3.yaml # instruction-tuning configuration
|
133 |
+
│ ├── dsconfig
|
134 |
+
│ │ ├── stage_1.json # deepspeed configuration for enc-side alignment training
|
135 |
+
│ │ ├── stage_2.json # deepspeed configuration for dec-side alignment training
|
136 |
+
│ │ └── stage_3.json # deepspeed configuration for instruction-tuning training
|
137 |
+
│ ├── datast
|
138 |
+
│ │ ├── base_dataset.py
|
139 |
+
│ │ ├── catalog.py # the catalog information of the dataset
|
140 |
+
│ │ ├── cc3m_datast.py # process and load text-image pair dataset
|
141 |
+
│ │ ├── audiocap_datast.py # process and load text-audio pair dataset
|
142 |
+
│ │ ├── webvid_dataset.py # process and load text-video pair dataset
|
143 |
+
│ │ ├── T+X-T_instruction_dataset.py # process and load text+x-to-text instruction dataset
|
144 |
+
│ │ ├── T-T+X_instruction_dataset.py # process and load text-to-text+x instruction dataset
|
145 |
+
│ │ └── concat_dataset.py # process and load multiple dataset
|
146 |
+
│ ├── model
|
147 |
+
│ │ ├── ImageBind # the code from ImageBind Model
|
148 |
+
│ │ ├── common
|
149 |
+
│ │ ├── anyToImageVideoAudio.py # the main model file
|
150 |
+
│ │ ├── agent.py
|
151 |
+
│ │ ├── modeling_llama.py
|
152 |
+
│ │ ├── custom_ad.py # the audio diffusion
|
153 |
+
│ │ ├── custom_sd.py # the image diffusion
|
154 |
+
│ │ ├── custom_vd.py # the video diffusion
|
155 |
+
│ │ ├── layers.py # the output projection layers
|
156 |
+
│ │ └── ...
|
157 |
+
│ ├── scripts
|
158 |
+
│ │ ├── train.sh # training NExT-GPT script
|
159 |
+
│ │ └── app.sh # deploying demo script
|
160 |
+
│ ├── header.py
|
161 |
+
│ ├── process_embeddings.py # precompute the captions embeddings
|
162 |
+
│ ├── train.py # training
|
163 |
+
│ ├── inference.py # inference
|
164 |
+
│ ├── demo_app.py # deploy Gradio demonstration
|
165 |
+
│ └── ...
|
166 |
+
├── ckpt
|
167 |
+
│ ├── delta_ckpt # tunable NExT-GPT params
|
168 |
+
│ │ ├── nextgpt
|
169 |
+
│ │ │ ├── 7b_tiva_v0 # the directory to save the log file
|
170 |
+
│ │ │ │ ├── log # the logs
|
171 |
+
│ └── ...
|
172 |
+
│ ├── pretrained_ckpt # frozen params of pretrained modules
|
173 |
+
│ │ ├── imagebind_ckpt
|
174 |
+
│ │ │ ├──huge # version
|
175 |
+
│ │ │ │ └──imagebind_huge.pth
|
176 |
+
│ │ ├── vicuna_ckpt
|
177 |
+
│ │ │ ├── 7b_v0 # version
|
178 |
+
│ │ │ │ ├── config.json
|
179 |
+
│ │ │ │ ├── pytorch_model-00001-of-00002.bin
|
180 |
+
│ │ │ │ ├── tokenizer.model
|
181 |
+
│ │ │ │ └── ...
|
182 |
+
├── LICENCE.md
|
183 |
+
├── README.md
|
184 |
+
└── requirements.txt
|
185 |
+
```
|
186 |
+
|
187 |
+
|
188 |
+
<span id='Environment Preparation'/>
|
189 |
+
|
190 |
+
|
191 |
+
### 2. Environment Preparation <a href='#all_catelogue'>[Back to Top]</a>
|
192 |
+
Please first clone the repo and install the required environment, which can be done by running the following commands:
|
193 |
+
```
|
194 |
+
conda env create -n nextgpt python=3.8
|
195 |
+
|
196 |
+
conda activate nextgpt
|
197 |
+
|
198 |
+
# CUDA 11.6
|
199 |
+
conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 pytorch-cuda=11.6 -c pytorch -c nvidia
|
200 |
+
|
201 |
+
git clone https://github.com/NExT-GPT/NExT-GPT.git
|
202 |
+
cd NExT-GPT
|
203 |
+
|
204 |
+
pip install -r requirements.txt
|
205 |
+
```
|
206 |
+
|
207 |
+
<span id='Training on Your Own'/>
|
208 |
+
|
209 |
+
### 3. Training/Adapting NExt-GPT on Your Own
|
210 |
+
|
211 |
+
####
|
212 |
+
|
213 |
+
|
214 |
+
|
215 |
+
<span id='Prepare Pre-trained Checkpoint'/>
|
216 |
+
|
217 |
+
#### 3.1. Preparing Pre-trained Checkpoint <a href='#all_catelogue'>[Back to Top]</a>
|
218 |
+
NExT-GPT is trained based on following excellent existing models.
|
219 |
+
Please follow the instructions to prepare the checkpoints.
|
220 |
+
|
221 |
+
- `ImageBind`
|
222 |
+
is the unified image/video/audio encoder. The pre-trained checkpoint can be downloaded from [here](https://dl.fbaipublicfiles.com/imagebind/imagebind_huge.pth) with version `huge`. Afterward, put the `imagebind_huge.pth` file at [[./ckpt/pretrained_ckpt/imagebind_ckpt/huge]](ckpt/pretrained_ckpt/imagebind_ckpt/).
|
223 |
+
- `Vicuna`:
|
224 |
+
first prepare the LLaMA by following the instructions [[here]](ckpt/pretrained_ckpt/prepare_vicuna.md). Then put the pre-trained model at [[./ckpt/pretrained_ckpt/vicuna_ckpt/]](ckpt/pretrained_ckpt/vicuna_ckpt/).
|
225 |
+
- `Image Diffusion`
|
226 |
+
is used to generate images. NExT-GPT uses [Stable Diffusion](https://huggingface.co/runwayml/stable-diffusion-v1-5) with version `
|
227 |
+
v1-5`. (_will be automatically downloaded_)
|
228 |
+
- `Audio Diffusion`
|
229 |
+
for producing audio content. NExT-GPT employs [AudioLDM](https://github.com/haoheliu/AudioLDM) with version `l-full`. (_will be automatically downloaded_)
|
230 |
+
- `Video Diffusion`
|
231 |
+
for the video generation. We employ [ZeroScope](https://huggingface.co/cerspense/zeroscope_v2_576w) with version `v2_576w`. (_will be automatically downloaded_)
|
232 |
+
|
233 |
+
|
234 |
+
|
235 |
+
<span id='Prepare Dataset'/>
|
236 |
+
|
237 |
+
#### 3.2. Preparing Dataset <a href='#all_catelogue'>[Back to Top]</a>
|
238 |
+
Please download the following datasets used for model training:
|
239 |
+
|
240 |
+
A) T-X pairs data
|
241 |
+
- `CC3M` of ***text-image*** pairs, please follow this instruction [[here]](./data/T-X_pair_data/cc3m/prepare.md). Then put the data at [[./data/T-X_pair_data/cc3m]](./data/T-X_pair_data/cc3m).
|
242 |
+
- `WebVid` of ***text-video*** pairs, see the [[instruction]](./data/T-X_pair_data/webvid/prepare.md). The file should be saved at [[./data/T-X_pair_data/webvid]](./data/T-X_pair_data/webvid).
|
243 |
+
- `AudioCap` of ***text-audio*** pairs, see the [[instruction]](./data/T-X_pair_data/audiocap/prepare.md). Save the data in [[./data/T-X_pair_data/audiocap]](./data/T-X_pair_data/audiocap).
|
244 |
+
|
245 |
+
B) Instruction data
|
246 |
+
- T+X-T
|
247 |
+
- `LLaVA` of the ***visual instruction data***, download it from [here](https://github.com/haotian-liu/LLaVA/blob/main/docs/Data.md), and then put it at [[./data/IT_data/T+X-T_data/llava]](./data/IT_data/T+X-T_data/llava/).
|
248 |
+
- `Alpaca` of the ***textual instruction data***, download it from [here](https://github.com/tatsu-lab/stanford_alpaca), and then put it at [[./data/IT_data/T+X-T_data/alpaca/]](data/IT_data/T+X-T_data/alpaca/).
|
249 |
+
- `VideoChat`, download the ***video instruction data*** [here](https://github.com/OpenGVLab/InternVideo/tree/main/Data/instruction_data), and then put it at [[./data/IT_data/T+X-T_data/videochat/]](data/IT_data/T+X-T_data/videochat/).
|
250 |
+
|
251 |
+
Side note:After downloading dataset, please run `preprocess_dataset.py` to preprocess the dataset into a unified format.
|
252 |
+
- T-X+T (T2M)
|
253 |
+
- The `T-X+T` instruction datasets (T2M) are saved at [[./data/IT_data/T-T+X_data]](./data/IT_data/T-T+X_data).
|
254 |
+
|
255 |
+
- MosIT
|
256 |
+
- Download the file from [here](), put them in [[./data/IT_data/MosIT_data/]](./data/IT_data/MosIT_data/). (_We are in the process of finalizing the data and handling the copyright issue. Will release later._)
|
257 |
+
|
258 |
+
|
259 |
+
<span id='Precompute Embeddings'/>
|
260 |
+
|
261 |
+
#### 3.3. Precomputing Embeddings <a href='#all_catelogue'>[Back to Top]</a>
|
262 |
+
In decoding-side alignment training, we minimize the distance between the representation of signal tokens and captions.
|
263 |
+
To save costs of time and memory, we precompute the text embeddings for image, audio and video captions using the text encoder within the respective diffusion models.
|
264 |
+
|
265 |
+
Please run this command before the following training of NExT-GPT, where the produced `embedding` file will be saved at [[./data/embed]](./data/embed).
|
266 |
+
```angular2html
|
267 |
+
cd ./code/
|
268 |
+
python process_embeddings.py ../data/T-X_pair_data/cc3m/cc3m.json image ../data/embed/ runwayml/stable-diffusion-v1-5
|
269 |
+
```
|
270 |
+
|
271 |
+
Note of arguments:
|
272 |
+
- args[1]: path of caption file;
|
273 |
+
- args[2]: modality, which can be `image`, `video`, and `audio`;
|
274 |
+
- args[3]: saving path of embedding file;
|
275 |
+
- args[4]: corresponding pre-trained diffusion model name.
|
276 |
+
|
277 |
+
|
278 |
+
|
279 |
+
<span id='Train NExT-GPT'/>
|
280 |
+
|
281 |
+
#### 3.4. Training NExT-GPT <a href='#all_catelogue'>[Back to Top]</a>
|
282 |
+
|
283 |
+
First of all, please refer to the base configuration file [[./code/config/base.yaml]](./code/config/base.yaml) for the basic system setting of overall modules.
|
284 |
+
|
285 |
+
Then, the training of NExT-GPT starts with this script:
|
286 |
+
```angular2html
|
287 |
+
cd ./code
|
288 |
+
bash scripts/train.sh
|
289 |
+
```
|
290 |
+
Specifying the command:
|
291 |
+
```angular2html
|
292 |
+
deepspeed --include localhost:0 --master_addr 127.0.0.1 --master_port 28459 train.py \
|
293 |
+
--model nextgpt \
|
294 |
+
--stage 1\
|
295 |
+
--save_path ../ckpt/delta_ckpt/nextgpt/7b_tiva_v0/\
|
296 |
+
--log_path ../ckpt/delta_ckpt/nextgpt/7b_tiva_v0/log/
|
297 |
+
```
|
298 |
+
where the key arguments are:
|
299 |
+
- `--include`: `localhost:0` indicating the GPT cuda number `0` of deepspeed.
|
300 |
+
- `--stage`: training stage.
|
301 |
+
- `--save_path`: the directory which saves the trained delta weights. This directory will be automatically created.
|
302 |
+
- `--log_path`: the directory which saves the log file.
|
303 |
+
|
304 |
+
|
305 |
+
|
306 |
+
|
307 |
+
|
308 |
+
|
309 |
+
The whole NExT-GPT training involves 3 steps:
|
310 |
+
|
311 |
+
- **Step-1**: Encoding-side LLM-centric Multimodal Alignment. This stage trains the ***input projection layer*** while freezing the ImageBind, LLM, output projection layer.
|
312 |
+
|
313 |
+
Just run the above `train.sh` script by setting: `--stage 1`
|
314 |
+
|
315 |
+
Also refer to the running config file [[./code/config/stage_1.yaml]](./code/config/stage_1.yaml) and deepspeed config file [[./code/dsconfig/stage_1.yaml]](./code/dsconfig/stage_1.yaml) for more step-wise configurations.
|
316 |
+
|
317 |
+
Note that the dataset used for training in this step is included `dataset_name_list` and the dataset name must precisely match the definition in [[./code/dataset/catalog.py]](./code/dataset/catalog.py)
|
318 |
+
|
319 |
+
|
320 |
+
|
321 |
+
- **Step-2**: Decoding-side Instruction-following Alignment. This stage trains the ***output projection layers*** while freezing the ImageBind, LLM, input projection layers.
|
322 |
+
|
323 |
+
Just run the above `train.sh` script by setting: `--stage 2`
|
324 |
+
|
325 |
+
Also refer to the running config file [[./code/config/stage_2.yaml]](./code/config/stage_2.yaml) and deepspeed config file [[./code/dsconfig/stage_2.yaml]](./code/dsconfig/stage_2.yaml) for more step-wise configurations.
|
326 |
+
|
327 |
+
|
328 |
+
|
329 |
+
|
330 |
+
|
331 |
+
- **Step-3**: Instruction Tuning. This stage instruction-tune 1) the ***LLM*** via LoRA, 2) ***input projection layer*** and 3) ***output projection layer*** on the instruction dataset.
|
332 |
+
|
333 |
+
Just run the above `train.sh` script by setting: `--stage 3`
|
334 |
+
|
335 |
+
Also refer to the running config file [[./code/config/stage_3.yaml]](./code/config/stage_3.yaml) and deepspeed config file [[./code/dsconfig/stage_3.yaml]](./code/dsconfig/stage_3.yaml) for more step-wise configurations.
|
336 |
+
|
337 |
+
|
338 |
+
|
339 |
+
|
340 |
+
<span id='Run NExT-GPT System'/>
|
341 |
+
|
342 |
+
## 4. Running NExT-GPT System <a href='#all_catelogue'>[Back to Top]</a>
|
343 |
+
|
344 |
+
|
345 |
+
<span id='Prepare checkpoints'/>
|
346 |
+
|
347 |
+
|
348 |
+
#### 4.1. Preparing Checkpoints
|
349 |
+
|
350 |
+
First, loading the pre-trained NExT-GPT system.
|
351 |
+
- **Step-1**: load `Frozen parameters`. Please refer to <a href='#Prepare Pre-trained Checkpoint'>3.1 Preparing Pre-trained Checkpoint</a>.
|
352 |
+
|
353 |
+
- **Step-2**: load `Tunable parameters`. Please put the NExT-GPT system at [[./ckpt/delta_ckpt/nextgpt/7b_tiva_v0]](./ckpt/delta_ckpt/nextgpt/7b_tiva_v0). You may either 1) use the params trained yourselves, or 2) download our checkpoints from [Huggingface](https://huggingface.co/ChocoWu/nextgpt_7b_tiva_v0).
|
354 |
+
|
355 |
+
|
356 |
+
<span id='Deploy Demo System'/>
|
357 |
+
|
358 |
+
|
359 |
+
#### 4.2. Deploying Gradio Demo
|
360 |
+
Upon completion of the checkpoint loading, you can run the demo locally via:
|
361 |
+
```angular2html
|
362 |
+
cd ./code
|
363 |
+
bash scripts/app.sh
|
364 |
+
```
|
365 |
+
Specifying the key arguments as:
|
366 |
+
- `--nextgpt_ckpt_path`: the path of pre-trained NExT-GPT params.
|
367 |
+
|
368 |
+
---------
|
369 |
+
|
370 |
+
|
371 |
+
## Contact
|
372 |
+
|
373 |
+
For any questions or feedback, feel free to contact [Shengqiong Wu](mailto:swu@u.nus.edu) and [Hao Fei](mailto:haofei37@nus.edu.sg).
|
374 |
+
|
375 |
+
|
376 |
+
## Citation
|
377 |
+
|
378 |
+
If you find NextGPT useful in your research or applications, please kindly cite:
|
379 |
+
```
|
380 |
+
@articles{wu2023nextgpt,
|
381 |
+
title={NExT-GPT: Any-to-Any Multimodal LLM},
|
382 |
+
author={Shengqiong Wu and Hao Fei and Leigang Qu and Wei Ji and Tat-Seng Chua},
|
383 |
+
journal = {CoRR},
|
384 |
+
volume = {abs/2309.05519},
|
385 |
+
year={2023}
|
386 |
+
}
|
387 |
+
```
|
388 |
+
|
389 |
+
|
390 |
+
|
391 |
+
|
392 |
+
|
393 |
+
## Acknowledgements
|
394 |
+
You may refer to related work that serves as foundations for our framework and code repository,
|
395 |
+
[Vicuna](https://github.com/lm-sys/FastChat),
|
396 |
+
[ImageBind](https://github.com/facebookresearch/ImageBind),
|
397 |
+
[Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion/text2img),
|
398 |
+
[AudioLDM](https://github.com/haoheliu/AudioLDM), and
|
399 |
+
[Zeroscope](https://huggingface.co/cerspense/zeroscope_v2_576w).
|
400 |
+
We also partially draw inspirations from
|
401 |
+
[PandaGPT](https://github.com/yxuansu/PandaGPT),
|
402 |
+
[VPGTrans](https://vpgtrans.github.io/),
|
403 |
+
[GILL](https://github.com/kohjingyu/gill/),
|
404 |
+
[CoDi](https://codi-gen.github.io/),
|
405 |
+
[Video-LLaMA](https://github.com/DAMO-NLP-SG/Video-LLaMA),
|
406 |
+
and [MiniGPT-4](https://github.com/Vision-CAIR/MiniGPT-4).
|
407 |
+
Thanks for their wonderful works.
|
408 |
+
|
409 |
+
|
410 |
+
|
411 |
+
|
412 |
+
## License Notices
|
413 |
+
This repository is under [BSD 3-Clause License](LICENSE.txt).
|
414 |
+
NExT-GPT is a research project intended for non-commercial use only.
|
415 |
+
One must NOT use the code of NExT-GPT for any illegal, harmful, violent, racist, or sexual purposes.
|
416 |
+
One is strictly prohibited from engaging in any activity that will potentially violate these guidelines.
|
417 |
+
Any potential commercial use of this code should be approved by the authors.
|
ckpt/__init__.py
ADDED
File without changes
|
ckpt/delta_ckpt/nextgpt/7b_tiva_v0/__init__.py
ADDED
File without changes
|
ckpt/pretrained_ckpt/__init__.py
ADDED
File without changes
|
ckpt/pretrained_ckpt/imagebind_ckpt/__init__.py
ADDED
File without changes
|
ckpt/pretrained_ckpt/imagebind_ckpt/huge/__init__.py
ADDED
File without changes
|
ckpt/pretrained_ckpt/prepare_vicuna.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# 1. Prepare Vicuna Checkpoint
|
2 |
+
|
3 |
+
The language decoder of NExT-GPT relies on Vicuna version 0 which is an open-source LLaMA-based LLM.
|
4 |
+
However, due to the distribution license of LLaMA, manual restoration of Vicuna's weights is required.
|
5 |
+
Below are the instructions for restoring these weights.
|
6 |
+
(These original instruction comes from the [PandaGPT](https://github.com/yxuansu/PandaGPT)).
|
7 |
+
|
8 |
+
|
9 |
+
## 1.1. Prepare LLaMA Weights
|
10 |
+
* Request the original weights of LLaMA from Meta by filling [this form](https://docs.google.com/forms/d/e/1FAIpQLSfqNECQnMkycAp2jP4Z9TFX0cGR4uf7b_fBxjY_OjhJILlKGA/viewform).
|
11 |
+
* After obtaining the weights of a specific LLaMA (e.g. 7B, 13B), following [instructions](https://huggingface.co/docs/transformers/main/model_doc/llama) provided by Huggingface to convert it into Huggingface format.
|
12 |
+
|
13 |
+
> **** After conversion, the directory should look like:
|
14 |
+
|
15 |
+
.
|
16 |
+
└── ./{path_to_llama_weights}/
|
17 |
+
│ ├── config.json
|
18 |
+
│ ├── generation_config.json
|
19 |
+
│ ├── pytorch_model-00001-of-00002.bin
|
20 |
+
│ ├── pytorch_model-00002-of-00002.bin
|
21 |
+
│ ├── pytorch_model.bin.index.json
|
22 |
+
│ ├── special_tokens_map.json
|
23 |
+
│ ├── tokenizer.model
|
24 |
+
│ └── tokenizer_config.json
|
25 |
+
|
26 |
+
`{path_to_llama_weights}` is where you store the checkpoints.
|
27 |
+
|
28 |
+
|
29 |
+
## 1.2. Prepare the Delta Weights of Vicuna
|
30 |
+
|
31 |
+
Then, you should download the delta weights of Vicuna provided by the original authors. You can find the corresponding links to 7B/13B Vicuna models in the table below.
|
32 |
+
|
33 |
+
|**Model Size**|**Delta Weights Address**|**Version**|
|
34 |
+
|:-------------:|:-------------:|:-------------:|
|
35 |
+
|7B|[[Link]](https://huggingface.co/lmsys/vicuna-7b-delta-v0)|0|
|
36 |
+
|13B|[[Link]](https://huggingface.co/lmsys/vicuna-13b-delta-v0)|0|
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
> **** After conversion, the directory should look like:
|
41 |
+
|
42 |
+
.
|
43 |
+
└── ./{path_to_delta_vicuna_weights}/
|
44 |
+
├── config.json
|
45 |
+
├── generation_config.json
|
46 |
+
├── pytorch_model-00001-of-00002.bin
|
47 |
+
├── pytorch_model-00002-of-00002.bin
|
48 |
+
├── pytorch_model.bin.index.json
|
49 |
+
├── special_tokens_map.json
|
50 |
+
├── tokenizer.model
|
51 |
+
└── tokenizer_config.json
|
52 |
+
|
53 |
+
`{path_to_delta_vicuna_weights}` is where you store the delta weights of Vicuna.
|
54 |
+
|
55 |
+
## 1.3. Combine the Weights:
|
56 |
+
|
57 |
+
When the two sets of weights are ready, you can combine them using tools from the Vicuna team.
|
58 |
+
|
59 |
+
First, install the required library.
|
60 |
+
```yaml
|
61 |
+
pip install git+https://github.com/lm-sys/FastChat.git@v0.1.10
|
62 |
+
```
|
63 |
+
|
64 |
+
Then, run the following command.
|
65 |
+
```yaml
|
66 |
+
python -m fastchat.model.apply_delta --base {path_to_llama_weights} --target ./vicuna_ckpt/7b_v0/ --delta {path_to_delta_vicuna_weights}
|
67 |
+
```
|
68 |
+
|
69 |
+
> **** Now, the final weights are ready as:
|
70 |
+
|
71 |
+
.
|
72 |
+
└── ./vicuna_ckpt/7b_v0/
|
73 |
+
├── config.json
|
74 |
+
├── generation_config.json
|
75 |
+
├── pytorch_model-00001-of-00002.bin
|
76 |
+
├── pytorch_model-00002-of-00002.bin
|
77 |
+
├── pytorch_model.bin.index.json
|
78 |
+
├── special_tokens_map.json
|
79 |
+
├── tokenizer.model
|
80 |
+
└── tokenizer_config.json
|
ckpt/pretrained_ckpt/vicuna_ckpt/__init__.py
ADDED
File without changes
|
code/__init__.py
ADDED
File without changes
|
code/bot.png
ADDED
code/config/__init__.py
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import yaml
|
2 |
+
|
3 |
+
|
4 |
+
def load_model_config(stage, mode):
|
5 |
+
# load special config for each model
|
6 |
+
config_path = f'config/stage_{stage}.yaml'
|
7 |
+
print(f'[!] load configuration from {config_path}')
|
8 |
+
with open(config_path) as f:
|
9 |
+
configuration = yaml.load(f, Loader=yaml.FullLoader)
|
10 |
+
new_config = {}
|
11 |
+
for key, value in configuration.items():
|
12 |
+
if key in ['train', 'test', 'validation']:
|
13 |
+
if mode == key:
|
14 |
+
new_config.update(value)
|
15 |
+
else:
|
16 |
+
new_config[key] = value
|
17 |
+
configuration = new_config
|
18 |
+
return configuration
|
19 |
+
|
20 |
+
|
21 |
+
def load_config(args):
|
22 |
+
'''the configuration of each model can rewrite the base configuration'''
|
23 |
+
# base config
|
24 |
+
base_configuration = load_base_config()
|
25 |
+
|
26 |
+
# load stage config
|
27 |
+
# if args.get('mode'):
|
28 |
+
stage_configuration = load_model_config(args['stage'], args['mode'])
|
29 |
+
|
30 |
+
# update and append the stage config for base config
|
31 |
+
base_configuration.update(stage_configuration)
|
32 |
+
configuration = base_configuration
|
33 |
+
return configuration
|
34 |
+
|
35 |
+
|
36 |
+
def load_base_config():
|
37 |
+
config_path = f'config/base.yaml'
|
38 |
+
with open(config_path) as f:
|
39 |
+
configuration = yaml.load(f, Loader=yaml.FullLoader)
|
40 |
+
print(f'[!] load base configuration: {config_path}')
|
41 |
+
return configuration
|
code/config/base.yaml
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ========= system global ========== #
|
2 |
+
models:
|
3 |
+
nextgpt:
|
4 |
+
model_name: NextGPTModel
|
5 |
+
agent_name: DeepSpeedAgent
|
6 |
+
|
7 |
+
seed: 13
|
8 |
+
max_length: 512 # max length of the user input prompt
|
9 |
+
logging_step: 5
|
10 |
+
num_clip_tokens: 77
|
11 |
+
gen_emb_dim: 768
|
12 |
+
pretrained_ckpt_path: ../ckpt/pretrained_ckpt/
|
13 |
+
|
14 |
+
# ========= LLM ========== #
|
15 |
+
vicuna_version: 7b_v0 # [7b_v0, ]
|
16 |
+
|
17 |
+
# ========= multimodal encoder ========== #
|
18 |
+
imagebind_version: huge
|
19 |
+
|
20 |
+
# ========= text-to-image alignment tuning ========== #
|
21 |
+
n_img_tokens: 4
|
22 |
+
text_emb_to_img_layers: [-1]
|
23 |
+
num_gen_img_tokens: 4
|
24 |
+
text_fc_to_img_mode: transformer # [qformer, transformer]
|
25 |
+
|
26 |
+
# ========= text-to-video alignment tuning ========== #
|
27 |
+
n_video_tokens: 24
|
28 |
+
text_emb_to_video_layers: [-1]
|
29 |
+
num_gen_video_tokens: 24
|
30 |
+
text_fc_to_video_mode: transformer # [qformer, transformer]
|
31 |
+
|
32 |
+
# ========= text-to-audio alignment tuning ========== #
|
33 |
+
n_audio_tokens: 8
|
34 |
+
text_emb_to_audio_layers: [-1]
|
35 |
+
num_gen_audio_tokens: 8
|
36 |
+
text_fc_to_audio_mode: transformer # [qformer, transformer]
|
37 |
+
|
38 |
+
# ========= image diffusion model ========== #
|
39 |
+
image_diffusion: runwayml/stable-diffusion-v1-5 # [runwayml/stable-diffusion-v1-5, stabilityai/stable-diffusion-2]
|
40 |
+
|
41 |
+
# ========= video diffusion model ========== #
|
42 |
+
video_diffusion: cerspense/zeroscope_v2_576w
|
43 |
+
|
44 |
+
# ========= audio diffusion model ========== #
|
45 |
+
audio_diffusion: cvssp/audioldm-l-full # [cvssp/audioldm-l-full, cvssp/audioldm-s-full-v2]
|
code/config/stage_1.yaml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
freeze_lm: true
|
2 |
+
freeze_input_proj: false
|
3 |
+
freeze_output_proj: true
|
4 |
+
prompt: 'generate a caption' # the prompting information for the enc-side alignment.
|
5 |
+
train:
|
6 |
+
warmup_rate: 0.1
|
7 |
+
epochs: 1
|
8 |
+
max_length: 512
|
9 |
+
max_shard_size: 10GB
|
10 |
+
dataset_name_list: ['cc3m_enc', 'webvid_enc', 'audiocap_enc']
|
code/config/stage_2.yaml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
freeze_lm: true
|
2 |
+
freeze_input_proj: true
|
3 |
+
freeze_output_proj: false
|
4 |
+
prompt: '' # the prompting information for the enc-side alignment.
|
5 |
+
train:
|
6 |
+
warmup_rate: 0.1
|
7 |
+
epochs: 1
|
8 |
+
max_length: 512
|
9 |
+
max_shard_size: 10GB
|
10 |
+
dataset_name_list: ['cc3m_dec', 'webvid_dec', 'audiocap_dec']
|
code/config/stage_3.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ========= lora hyper-params ========== #
|
2 |
+
lora_r: 32
|
3 |
+
lora_alpha: 32
|
4 |
+
lora_dropout: 0.1
|
5 |
+
|
6 |
+
freeze_lm: false
|
7 |
+
freeze_input_proj: false
|
8 |
+
freeze_output_proj: false
|
9 |
+
prompt: '' # the prompting information for the enc-side alignment.
|
10 |
+
|
11 |
+
train:
|
12 |
+
warmup_rate: 0.1
|
13 |
+
epochs: 1
|
14 |
+
max_length: 512
|
15 |
+
max_shard_size: 10GB
|
16 |
+
dataset_name_list: ['audio_instruction', 'video_instruction', 'image_instruction', 'llava_instruction', 'alpaca_instruction']
|
17 |
+
|
18 |
+
|
code/dataset/T+X-T_instruction_dataset.py
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import os.path
|
3 |
+
|
4 |
+
from torch.utils.data import Dataset
|
5 |
+
from tqdm import tqdm
|
6 |
+
import pandas as pd
|
7 |
+
import re
|
8 |
+
import random
|
9 |
+
import numpy as np
|
10 |
+
import torch
|
11 |
+
|
12 |
+
|
13 |
+
# from .base_dataset import BaseDataset
|
14 |
+
|
15 |
+
|
16 |
+
class TX2TInstructionDataset(Dataset):
|
17 |
+
"""
|
18 |
+
T + X - T instruction Dataset
|
19 |
+
"""
|
20 |
+
def __init__(self, data_path: str, mm_root_path: str = None, dataset_type: str='ImageToText'):
|
21 |
+
super(TX2TInstructionDataset, self).__init__()
|
22 |
+
|
23 |
+
self.mm_root_path = mm_root_path
|
24 |
+
self.instruction_list = []
|
25 |
+
self.mm_path_list = []
|
26 |
+
self.dataset_category = 't2t' if mm_root_path is None else 'tx2t'
|
27 |
+
with open(data_path, 'r', encoding='utf-8') as f:
|
28 |
+
res = json.load(f)
|
29 |
+
for instance in tqdm(res, total=len(res)):
|
30 |
+
self.instruction_list.append(instance['conversation'])
|
31 |
+
if self.dataset_category == 'tx2t':
|
32 |
+
# Text + X -> Text dataset
|
33 |
+
self.mm_path_list.append(os.path.join(mm_root_path, instance['image_name']))
|
34 |
+
self.dataset_type_list = [dataset_type for _ in range(len(self.instruction_list))]
|
35 |
+
|
36 |
+
def __len__(self): # number of instances
|
37 |
+
return len(self.instruction_list)
|
38 |
+
|
39 |
+
def __getitem__(self, i):
|
40 |
+
if self.dataset_category == 'tx2t':
|
41 |
+
# Text + X -> Text dataset
|
42 |
+
return dict(mm_paths=self.mm_path_list[i], output_texts=self.instruction_list[i],
|
43 |
+
dataset_types=self.dataset_type_list[i])
|
44 |
+
else:
|
45 |
+
# Text -> Text dataset
|
46 |
+
return dict(output_texts=self.instruction_list[i], dataset_types=self.dataset_type_list[i])
|
47 |
+
|
48 |
+
def collate(self, instances):
|
49 |
+
if self.dataset_category == 'tx2t':
|
50 |
+
mm_paths, output_texts, dataset_types = tuple(
|
51 |
+
[instance[key] for instance in instances] for key in ("mm_paths", "output_texts", "dataset_types"))
|
52 |
+
return dict(
|
53 |
+
mm_paths=mm_paths,
|
54 |
+
output_texts=output_texts,
|
55 |
+
dataset_types=dataset_types
|
56 |
+
)
|
57 |
+
else:
|
58 |
+
output_texts, dataset_types = tuple(
|
59 |
+
[instance[key] for instance in instances] for key in ("output_texts", "dataset_types"))
|
60 |
+
return dict(
|
61 |
+
output_texts=output_texts,
|
62 |
+
dataset_types=dataset_types
|
63 |
+
)
|
code/dataset/T-T+X_instruction_dataset.py
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import os.path
|
3 |
+
|
4 |
+
from torch.utils.data import Dataset
|
5 |
+
from tqdm import tqdm
|
6 |
+
import pandas as pd
|
7 |
+
import re
|
8 |
+
import random
|
9 |
+
import numpy as np
|
10 |
+
import torch
|
11 |
+
|
12 |
+
|
13 |
+
# from .base_dataset import BaseDataset
|
14 |
+
|
15 |
+
|
16 |
+
class T2XTInstructionDataset(Dataset):
|
17 |
+
"""
|
18 |
+
T - T + X instruction Dataset
|
19 |
+
"""
|
20 |
+
def __init__(self, data_path: str, embed_path: str, dataset_type: str = "TextToImage"):
|
21 |
+
super(T2XTInstructionDataset, self).__init__()
|
22 |
+
|
23 |
+
self.embed_path = embed_path
|
24 |
+
self.instruction_list = []
|
25 |
+
self.mm_path_list = []
|
26 |
+
with open(data_path, 'r', encoding='utf-8') as f:
|
27 |
+
res = json.load(f)
|
28 |
+
for instance in tqdm(res, total=len(res)):
|
29 |
+
self.instruction_list.append(instance['conversation'])
|
30 |
+
self.mm_path_list.append(instance['mm_name'])
|
31 |
+
self.dataset_type_list = [dataset_type for _ in range(len(self.instruction_list))]
|
32 |
+
|
33 |
+
def __len__(self): # number of instances
|
34 |
+
return len(self.instruction_list)
|
35 |
+
|
36 |
+
def __getitem__(self, i):
|
37 |
+
with open(os.path.join(self.embed_path, str(os.path.basename(self.mm_path_list[i])) + '.npy'), 'rb') as f:
|
38 |
+
caption_embs = torch.from_numpy(np.load(f, allow_pickle=True)) # (num_clip_tokens, 768)
|
39 |
+
|
40 |
+
return dict(output_texts=self.instruction_list[i], caption_embs=caption_embs, dataset_types=self.dataset_type_list[i])
|
41 |
+
|
42 |
+
def collate(self, instances):
|
43 |
+
output_texts, caption_embs, dataset_types = tuple(
|
44 |
+
[instance[key] for instance in instances] for key in ("output_texts", "caption_embs", "dataset_types"))
|
45 |
+
return dict(
|
46 |
+
output_texts=output_texts,
|
47 |
+
caption_embs=caption_embs,
|
48 |
+
dataset_types=dataset_types
|
49 |
+
)
|
code/dataset/__init__.py
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from header import *
|
2 |
+
from .samplers import DistributedBatchSampler, DistributedMultiDatasetBatchSampler
|
3 |
+
from .catalog import DatasetCatalog
|
4 |
+
from .utils import instantiate_from_config
|
5 |
+
import torch
|
6 |
+
from torch.utils.data import ConcatDataset
|
7 |
+
from .concat_dataset import MyConcatDataset
|
8 |
+
|
9 |
+
|
10 |
+
def load_dataset(args, dataset_name_list):
|
11 |
+
"""
|
12 |
+
Args:
|
13 |
+
args:
|
14 |
+
dataset_name_list: List[str]
|
15 |
+
repeats: List[int], the training epochs for each dataset
|
16 |
+
|
17 |
+
"""
|
18 |
+
# concat_data = get_concat_dataset(dataset_name_list)
|
19 |
+
concat_data = MyConcatDataset(dataset_name_list)
|
20 |
+
world_size = torch.distributed.get_world_size()
|
21 |
+
rank = torch.distributed.get_rank()
|
22 |
+
batch_size = args['world_size'] * args['dschf'].config['train_micro_batch_size_per_gpu']
|
23 |
+
sampler = torch.utils.data.RandomSampler(concat_data)
|
24 |
+
batch_sampler = DistributedMultiDatasetBatchSampler(dataset=concat_data,
|
25 |
+
sampler=sampler,
|
26 |
+
batch_size=batch_size,
|
27 |
+
drop_last=True,
|
28 |
+
rank=rank,
|
29 |
+
world_size=world_size)
|
30 |
+
iter_ = DataLoader(
|
31 |
+
concat_data,
|
32 |
+
batch_sampler=batch_sampler,
|
33 |
+
num_workers=1,
|
34 |
+
collate_fn=concat_data.collate,
|
35 |
+
pin_memory=True
|
36 |
+
)
|
37 |
+
return concat_data, iter_, sampler
|
code/dataset/audiocap_dataset.py
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright 2023 Rohan Taori, Ishaan Gulrajani, Tianyi Zhang, Yann Dubois, Xuechen Li
|
2 |
+
#
|
3 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4 |
+
# you may not use this file except in compliance with the License.
|
5 |
+
# You may obtain a copy of the License at
|
6 |
+
#
|
7 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8 |
+
#
|
9 |
+
# Unless required by applicable law or agreed to in writing, software
|
10 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
+
# See the License for the specific language governing permissions and
|
13 |
+
# limitations under the License.
|
14 |
+
|
15 |
+
import copy
|
16 |
+
import os
|
17 |
+
import json
|
18 |
+
from tqdm import tqdm
|
19 |
+
import ipdb
|
20 |
+
import random
|
21 |
+
from torch.nn.utils.rnn import pad_sequence
|
22 |
+
from dataclasses import dataclass, field
|
23 |
+
from typing import Callable, Dict, Sequence
|
24 |
+
|
25 |
+
import torch
|
26 |
+
import torch.distributed as dist
|
27 |
+
import transformers
|
28 |
+
import numpy as np
|
29 |
+
from torch.utils.data import Dataset
|
30 |
+
from .base_dataset import BaseDataset
|
31 |
+
from tqdm import tqdm
|
32 |
+
import pandas as pd
|
33 |
+
from .utils import process_caption
|
34 |
+
|
35 |
+
|
36 |
+
class AudioCapDataset(BaseDataset):
|
37 |
+
"""Dataset for supervised fine-tuning."""
|
38 |
+
|
39 |
+
def __init__(self, data_path: str, mm_root_path: str, embed_path: str, dataset_type: str):
|
40 |
+
super(AudioCapDataset, self).__init__(data_path, mm_root_path, embed_path, dataset_type)
|
41 |
+
self.embed_path = embed_path
|
42 |
+
|
43 |
+
print('Load Audiocap dataset ...')
|
44 |
+
self.mm_path_list, self.caption_list = [], []
|
45 |
+
with open(data_path, 'r', encoding='utf-8') as f:
|
46 |
+
data = json.load(f)
|
47 |
+
for row in tqdm(data, total=len(data)):
|
48 |
+
audio_id, one_caption = row["audio_name"], row["caption"]
|
49 |
+
self.mm_path_list.append(os.path.join(mm_root_path, audio_id))
|
50 |
+
self.caption_list.append(process_caption(one_caption))
|
51 |
+
|
52 |
+
print(f'[!] collect {len(self.mm_path_list)} samples for training')
|
53 |
+
self.dataset_type_list = [dataset_type for _ in range(len(self.caption_list))]
|
54 |
+
|
55 |
+
|
code/dataset/base_dataset.py
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright 2023 Rohan Taori, Ishaan Gulrajani, Tianyi Zhang, Yann Dubois, Xuechen Li
|
2 |
+
#
|
3 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4 |
+
# you may not use this file except in compliance with the License.
|
5 |
+
# You may obtain a copy of the License at
|
6 |
+
#
|
7 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8 |
+
#
|
9 |
+
# Unless required by applicable law or agreed to in writing, software
|
10 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
+
# See the License for the specific language governing permissions and
|
13 |
+
# limitations under the License.
|
14 |
+
|
15 |
+
import copy
|
16 |
+
import os
|
17 |
+
import torch
|
18 |
+
import numpy as np
|
19 |
+
import json
|
20 |
+
from torch.utils.data import Dataset
|
21 |
+
from tqdm import tqdm
|
22 |
+
import pandas as pd
|
23 |
+
from .utils import process_caption
|
24 |
+
|
25 |
+
|
26 |
+
class BaseDataset(Dataset):
|
27 |
+
"""Dataset for supervised fine-tuning."""
|
28 |
+
|
29 |
+
def __init__(self, data_path: str, mm_root_path: str, embed_path: str, dataset_type: str):
|
30 |
+
super(BaseDataset, self).__init__()
|
31 |
+
self.embed_path = embed_path
|
32 |
+
self.mm_path_list, self.caption_list = [], []
|
33 |
+
self.dataset_type_list = []
|
34 |
+
|
35 |
+
def __len__(self): # number of instances
|
36 |
+
return len(self.mm_path_list)
|
37 |
+
|
38 |
+
def __getitem__(self, i):
|
39 |
+
with open(os.path.join(self.embed_path, str(os.path.basename(self.mm_path_list[i])) + '.npy'), 'rb') as f:
|
40 |
+
caption_embs = torch.from_numpy(np.load(f, allow_pickle=True)) # (num_clip_tokens, 768)
|
41 |
+
|
42 |
+
return dict(mm_paths=self.mm_path_list[i], output_texts=self.caption_list[i], caption_embs=caption_embs,
|
43 |
+
dataset_types=self.dataset_type_list[i])
|
44 |
+
|
45 |
+
def collate(self, instances):
|
46 |
+
mm_paths, output_texts, caption_embs, dataset_types = tuple(
|
47 |
+
[instance[key] for instance in instances] for key in
|
48 |
+
("mm_paths", "output_texts", "caption_embs", "dataset_types"))
|
49 |
+
return dict(
|
50 |
+
mm_paths=mm_paths,
|
51 |
+
output_texts=output_texts,
|
52 |
+
caption_embs=caption_embs,
|
53 |
+
dataset_types=dataset_types
|
54 |
+
)
|
55 |
+
|
code/dataset/catalog.py
ADDED
@@ -0,0 +1,125 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
|
3 |
+
|
4 |
+
class DatasetCatalog:
|
5 |
+
def __init__(self):
|
6 |
+
# the following dataset utilized for encoding-side alignment learning
|
7 |
+
self.audiocap_enc = {
|
8 |
+
"target": "dataset.audiocap_dataset.AudioCapDataset",
|
9 |
+
"params": dict(
|
10 |
+
data_path="../data/T-X_pair_data/audiocap/audiocap.json",
|
11 |
+
mm_root_path="../data/T-X_pair_data/audiocap/audios",
|
12 |
+
embed_path="../data/embed/",
|
13 |
+
dataset_type="AudioToText",
|
14 |
+
),
|
15 |
+
}
|
16 |
+
|
17 |
+
self.webvid_enc = {
|
18 |
+
"target": "dataset.webvid_dataset.WebvidDataset",
|
19 |
+
"params": dict(
|
20 |
+
data_path="../data/T-X_pair_data/webvid/webvid.json",
|
21 |
+
mm_root_path="../data/T-X_pair_data/webvid/videos",
|
22 |
+
embed_path="../data/embed/",
|
23 |
+
dataset_type="VideoToText",
|
24 |
+
),
|
25 |
+
}
|
26 |
+
|
27 |
+
self.cc3m_enc = {
|
28 |
+
"target": "dataset.cc3m_dataset.CC3MDataset",
|
29 |
+
"params": dict(
|
30 |
+
data_path="../data/T-X_pair_data/cc3m/cc3m.json",
|
31 |
+
mm_root_path="../data/T-X_pair_data/cc3m/images",
|
32 |
+
embed_path="../data/embed/",
|
33 |
+
dataset_type="ImageToText",
|
34 |
+
),
|
35 |
+
}
|
36 |
+
|
37 |
+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
|
38 |
+
|
39 |
+
# the following dataset utilized for decoding-side alignment learning.
|
40 |
+
|
41 |
+
self.audiocap_dec = {
|
42 |
+
"target": "dataset.audiocap_dataset.AudioCapDataset",
|
43 |
+
"params": dict(
|
44 |
+
data_path="../data/T-X_pair_data/audiocap/audiocap.json",
|
45 |
+
mm_root_path="../data/T-X_pair_data/audiocap/audios",
|
46 |
+
embed_path="../data/embed/",
|
47 |
+
dataset_type="TextToAudio",
|
48 |
+
),
|
49 |
+
}
|
50 |
+
|
51 |
+
self.webvid_dec = {
|
52 |
+
"target": "dataset.webvid_dataset.WebvidDataset",
|
53 |
+
"params": dict(
|
54 |
+
data_path="../data/T-X_pair_data/webvid/webvid.json",
|
55 |
+
mm_root_path="../data/T-X_pair_data/webvid/videos",
|
56 |
+
embed_path="../data/embed/",
|
57 |
+
dataset_type="TextToVideo",
|
58 |
+
),
|
59 |
+
}
|
60 |
+
|
61 |
+
self.cc3m_dec = {
|
62 |
+
"target": "dataset.cc3m_dataset.CC3MDataset",
|
63 |
+
"params": dict(
|
64 |
+
data_path="../data/T-X_pair_data/cc3m/cc3m.json",
|
65 |
+
mm_root_path="../data/T-X_pair_data/cc3m/images",
|
66 |
+
embed_path="../data/embed/",
|
67 |
+
dataset_type="TextToImage",
|
68 |
+
),
|
69 |
+
}
|
70 |
+
|
71 |
+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
|
72 |
+
|
73 |
+
# the following dataset utilized for instruction tuning, so they are instruction dataset.
|
74 |
+
self.audio_instruction = {
|
75 |
+
"target": "dataset.T-T+X_instruction_dataset.T2XTInstructionDataset",
|
76 |
+
"params": dict(
|
77 |
+
data_path="../data/IT_data/T-T+X_data/audio_t2x.json",
|
78 |
+
embed_path="./embed/",
|
79 |
+
dataset_type="TextToAudio",
|
80 |
+
),
|
81 |
+
}
|
82 |
+
|
83 |
+
self.video_instruction = {
|
84 |
+
"target": "dataset.T-T+X_instruction_dataset.T2XTInstructionDataset",
|
85 |
+
"params": dict(
|
86 |
+
data_path="../data/IT_data/T-T+X_data/video_t2x.json",
|
87 |
+
embed_path="./embed/",
|
88 |
+
dataset_type="TextToVideo",
|
89 |
+
),
|
90 |
+
}
|
91 |
+
|
92 |
+
self.image_instruction = {
|
93 |
+
"target": "dataset.T-T+X_instruction_dataset.T2XTInstructionDataset",
|
94 |
+
"params": dict(
|
95 |
+
data_path="../data/IT_data/T-T+X_data/image_t2x.json",
|
96 |
+
embed_path="./embed/",
|
97 |
+
dataset_type="TextToImage",
|
98 |
+
|
99 |
+
),
|
100 |
+
}
|
101 |
+
|
102 |
+
self.llava_instruction = {
|
103 |
+
"target": "dataset.T+X-T_instruction_dataset.TX2TInstructionDataset",
|
104 |
+
"params": dict(
|
105 |
+
data_path="../data/IT_data/T+X-T_data/llava/llava.json",
|
106 |
+
mm_root_path="../data/IT_data/T+X-T_data/llava/images",
|
107 |
+
dataset_type="ImageToText",
|
108 |
+
),
|
109 |
+
}
|
110 |
+
|
111 |
+
self.alpaca_instruction = {
|
112 |
+
"target": "dataset.T+X-T_instruction_dataset.TX2TInstructionDataset",
|
113 |
+
"params": dict(
|
114 |
+
data_path="../data/IT_data/T+X-T_data/alpaca/alpaca.json",
|
115 |
+
dataset_type="TextToText",
|
116 |
+
),
|
117 |
+
}
|
118 |
+
|
119 |
+
self.videochat_instruction = {
|
120 |
+
"target": "dataset.T+X-T_instruction_dataset.TX2TInstructionDataset",
|
121 |
+
"params": dict(
|
122 |
+
data_path="../data/IT_data/T+X-T_data/videochat/videochat.json",
|
123 |
+
dataset_type="VideoToText",
|
124 |
+
),
|
125 |
+
}
|
code/dataset/cc3m_dataset.py
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright 2023 Rohan Taori, Ishaan Gulrajani, Tianyi Zhang, Yann Dubois, Xuechen Li
|
2 |
+
#
|
3 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4 |
+
# you may not use this file except in compliance with the License.
|
5 |
+
# You may obtain a copy of the License at
|
6 |
+
#
|
7 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8 |
+
#
|
9 |
+
# Unless required by applicable law or agreed to in writing, software
|
10 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
+
# See the License for the specific language governing permissions and
|
13 |
+
# limitations under the License.
|
14 |
+
|
15 |
+
import copy
|
16 |
+
import os
|
17 |
+
import torch
|
18 |
+
import numpy as np
|
19 |
+
import json
|
20 |
+
from .base_dataset import BaseDataset
|
21 |
+
from torch.utils.data import Dataset
|
22 |
+
from tqdm import tqdm
|
23 |
+
import pandas as pd
|
24 |
+
from .utils import process_caption
|
25 |
+
|
26 |
+
|
27 |
+
class CC3MDataset(BaseDataset):
|
28 |
+
"""Dataset for supervised fine-tuning."""
|
29 |
+
|
30 |
+
def __init__(self, data_path: str, mm_root_path: str, embed_path: str, dataset_type: str):
|
31 |
+
super(CC3MDataset, self).__init__(data_path, mm_root_path, embed_path, dataset_type)
|
32 |
+
self.embed_path = embed_path
|
33 |
+
|
34 |
+
print('Load CC3M dataset ...')
|
35 |
+
self.mm_path_list, self.caption_list = [], []
|
36 |
+
with open(data_path, 'r', encoding='utf-8') as f:
|
37 |
+
data = json.load(f)
|
38 |
+
for row in tqdm(data, total=len(data)):
|
39 |
+
image_id, one_caption = row["image_name"], row["caption"]
|
40 |
+
self.mm_path_list.append(os.path.join(mm_root_path, image_id))
|
41 |
+
self.caption_list.append(process_caption(one_caption))
|
42 |
+
|
43 |
+
print(f'[!] collect {len(self.mm_path_list)} samples for training')
|
44 |
+
self.dataset_type_list = [dataset_type for _ in range(len(self.caption_list))]
|
45 |
+
|
code/dataset/concat_dataset.py
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from torch.utils.data import ConcatDataset, Dataset
|
2 |
+
from .catalog import DatasetCatalog
|
3 |
+
from .utils import instantiate_from_config
|
4 |
+
|
5 |
+
|
6 |
+
class MyConcatDataset(Dataset):
|
7 |
+
def __init__(self, dataset_name_list):
|
8 |
+
super(MyConcatDataset, self).__init__()
|
9 |
+
|
10 |
+
_datasets = []
|
11 |
+
|
12 |
+
catalog = DatasetCatalog()
|
13 |
+
for dataset_idx, dataset_name in enumerate(dataset_name_list):
|
14 |
+
dataset_dict = getattr(catalog, dataset_name)
|
15 |
+
|
16 |
+
target = dataset_dict['target']
|
17 |
+
params = dataset_dict['params']
|
18 |
+
print(target)
|
19 |
+
print(params)
|
20 |
+
dataset = instantiate_from_config(dict(target=target, params=params))
|
21 |
+
|
22 |
+
_datasets.append(dataset)
|
23 |
+
self.datasets = ConcatDataset(_datasets)
|
24 |
+
|
25 |
+
def __len__(self):
|
26 |
+
return self.datasets.__len__()
|
27 |
+
|
28 |
+
def __getitem__(self, item):
|
29 |
+
return self.datasets.__getitem__(item)
|
30 |
+
|
31 |
+
def collate(self, instances):
|
32 |
+
data = {key: [] for key in instances[0].keys()} if instances else {}
|
33 |
+
|
34 |
+
for instance in instances:
|
35 |
+
for key, value in instance.items():
|
36 |
+
data[key].append(value)
|
37 |
+
|
38 |
+
return data
|
code/dataset/preprocess_dataset.py
ADDED
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import os.path
|
3 |
+
|
4 |
+
from torch.utils.data import Dataset
|
5 |
+
from tqdm import tqdm
|
6 |
+
import pandas as pd
|
7 |
+
import re
|
8 |
+
import random
|
9 |
+
import numpy as np
|
10 |
+
import torch
|
11 |
+
|
12 |
+
|
13 |
+
def load_alpaca(data_path, sample_data=False, sample_numer=1000, save_dir=''):
|
14 |
+
"""
|
15 |
+
sample and process the alpaca dataset in to the following format:
|
16 |
+
[
|
17 |
+
{
|
18 |
+
"image_name": "00000000000",
|
19 |
+
"output_modality": "text",
|
20 |
+
"conversation": [
|
21 |
+
{
|
22 |
+
"from": "human",
|
23 |
+
"value": "Give three tips for staying healthy.",
|
24 |
+
"input_modality": "text"
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"from": "gpt",
|
28 |
+
"value": "1. Eat a balanced and nutritious diet: ...",
|
29 |
+
"caption": "",
|
30 |
+
"output_modality": "text"
|
31 |
+
}
|
32 |
+
]
|
33 |
+
},
|
34 |
+
...
|
35 |
+
]
|
36 |
+
"""
|
37 |
+
with open(data_path, 'r') as f:
|
38 |
+
data = json.load(f)
|
39 |
+
print('the total instance is {}'.format(len(data)))
|
40 |
+
if sample_data and sample_numer > 0:
|
41 |
+
data = random.sample(data, sample_numer)
|
42 |
+
res = []
|
43 |
+
for d in data:
|
44 |
+
_temp = dict()
|
45 |
+
_temp['image_name'] = '00000000000'
|
46 |
+
_temp['output_modality'] = 'text'
|
47 |
+
conversation = []
|
48 |
+
|
49 |
+
conversation.append(
|
50 |
+
{'from': 'human',
|
51 |
+
'value': d['instruction'] + d['input'],
|
52 |
+
'input_modality': 'text'}
|
53 |
+
)
|
54 |
+
conversation.append(
|
55 |
+
{'from': 'gpt',
|
56 |
+
'value': d['output'],
|
57 |
+
'caption': '',
|
58 |
+
'output_modality': 'text'}
|
59 |
+
)
|
60 |
+
_temp['conversation'] = conversation
|
61 |
+
res.append(_temp)
|
62 |
+
if not os.path.exists(save_dir):
|
63 |
+
os.makedirs(save_dir)
|
64 |
+
save_path = os.path.join(save_dir, os.path.basename(data_path))
|
65 |
+
with open(save_path, 'w', encoding='utf-8') as f:
|
66 |
+
json.dump(res, f, indent=4)
|
67 |
+
return res
|
68 |
+
|
69 |
+
|
70 |
+
def load_llava(data_path, sample_data=False, sample_numer=1000, save_dir=''):
|
71 |
+
"""
|
72 |
+
sample and process the llava instruction dataset into the following format:
|
73 |
+
[
|
74 |
+
{
|
75 |
+
"image_name": "00000000000.jpg",
|
76 |
+
"output_modality": "text",
|
77 |
+
"conversation": [
|
78 |
+
{
|
79 |
+
"from": "human",
|
80 |
+
"value": "Give three tips for staying healthy.",
|
81 |
+
"input_modality": "image"
|
82 |
+
},
|
83 |
+
{
|
84 |
+
"from": "gpt",
|
85 |
+
"value": "1. Eat a balanced and nutritious diet: ...",
|
86 |
+
"caption": "",
|
87 |
+
"output_modality": "text"
|
88 |
+
}
|
89 |
+
]
|
90 |
+
},
|
91 |
+
...
|
92 |
+
]
|
93 |
+
"""
|
94 |
+
with open(data_path, 'r') as f:
|
95 |
+
data = json.load(f)
|
96 |
+
print('the total instance is {}'.format(len(data)))
|
97 |
+
if sample_data and sample_numer > 0:
|
98 |
+
res = random.sample(data, sample_numer)
|
99 |
+
else:
|
100 |
+
res = data
|
101 |
+
# res = data
|
102 |
+
save_path = os.path.join(save_dir, os.path.basename(data_path))
|
103 |
+
for x in res:
|
104 |
+
i = 0
|
105 |
+
x['output_modality'] = 'text'
|
106 |
+
for j in x['conversation']:
|
107 |
+
if j['from'] == 'gpt':
|
108 |
+
j['caption'] = ''
|
109 |
+
j['output_modality'] = 'text'
|
110 |
+
elif j['from'] == 'human':
|
111 |
+
if i == 0:
|
112 |
+
j['input_modality'] = 'image'
|
113 |
+
i += 1
|
114 |
+
else:
|
115 |
+
j['input_modality'] = 'text'
|
116 |
+
with open(save_path, 'w', encoding='utf-8') as f:
|
117 |
+
json.dump(res, f, indent=4)
|
118 |
+
return res
|
119 |
+
|
120 |
+
|
121 |
+
def load_t2x(data_path):
|
122 |
+
with open(data_path, 'r', encoding='utf-8') as f:
|
123 |
+
data = json.load(f)
|
124 |
+
return data
|
125 |
+
|
126 |
+
|
127 |
+
if __name__ == '__main__':
|
128 |
+
save_dir = '../../data/IT_data/T+X-T_data'
|
129 |
+
res = []
|
130 |
+
|
131 |
+
# audios = load_t2x(os.path.join(save_dir, 'audio_t2x.json'))
|
132 |
+
# videos = load_t2x(os.path.join(save_dir, 'video_t2x.json'))
|
133 |
+
# images = load_t2x(os.path.join(save_dir, 'image_t2x.json'))
|
134 |
+
# sample_number = max(len(audios), len(videos), len(images))
|
135 |
+
#
|
136 |
+
# print(sample_number)
|
137 |
+
sample_number = 1000
|
138 |
+
|
139 |
+
print('Load aplaca dataset ...')
|
140 |
+
text = load_alpaca('../../data/IT_data/T+X-T_data/alpaca/alpaca.json', False, sample_number, save_dir)
|
141 |
+
res.extend(text)
|
142 |
+
|
143 |
+
print('Load llava dataset ...')
|
144 |
+
data = load_llava('../../data/IT_data/T+X-T_data/llava/llava.json', False, sample_number, save_dir)
|
code/dataset/samplers.py
ADDED
@@ -0,0 +1,221 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# coding=utf-8
|
2 |
+
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
|
3 |
+
#
|
4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
+
# you may not use this file except in compliance with the License.
|
6 |
+
# You may obtain a copy of the License at
|
7 |
+
#
|
8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
+
#
|
10 |
+
# Unless required by applicable law or agreed to in writing, software
|
11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
+
# See the License for the specific language governing permissions and
|
14 |
+
# limitations under the License.
|
15 |
+
"""batch samplers that work with either random or sequential data samplers"""
|
16 |
+
import math
|
17 |
+
import os
|
18 |
+
import sys
|
19 |
+
|
20 |
+
import torch
|
21 |
+
from torch.utils import data
|
22 |
+
import numpy as np
|
23 |
+
|
24 |
+
|
25 |
+
class RandomSampler(data.sampler.Sampler):
|
26 |
+
r"""
|
27 |
+
Based off of pytorch RandomSampler and DistributedSampler. Essentially a RandomSampler,
|
28 |
+
but this class lets the user set an epoch like DistributedSampler
|
29 |
+
Samples elements randomly. If without replacement, then sample from a shuffled dataset.
|
30 |
+
If with replacement, then user can specify ``num_samples`` to draw.
|
31 |
+
Arguments:
|
32 |
+
data_source (Dataset): dataset to sample from
|
33 |
+
num_samples (int): number of samples to draw, default=len(dataset)
|
34 |
+
replacement (bool): samples are drawn with replacement if ``True``, default=False
|
35 |
+
"""
|
36 |
+
|
37 |
+
def __init__(self, data_source, replacement=False, num_samples=None):
|
38 |
+
super(RandomSampler, self).__init__(data_source)
|
39 |
+
self.data_source = data_source
|
40 |
+
self.replacement = replacement
|
41 |
+
self._num_samples = num_samples
|
42 |
+
self.epoch = -1
|
43 |
+
|
44 |
+
if self._num_samples is not None and replacement is False:
|
45 |
+
raise ValueError("With replacement=False, num_samples should not be specified, "
|
46 |
+
"since a random permute will be performed.")
|
47 |
+
|
48 |
+
if not isinstance(self.num_samples, int) or self.num_samples <= 0:
|
49 |
+
raise ValueError("num_samples should be a positive integer "
|
50 |
+
"value, but got num_samples={}".format(self.num_samples))
|
51 |
+
if not isinstance(self.replacement, bool):
|
52 |
+
raise ValueError("replacement should be a boolean value, but got "
|
53 |
+
"replacement={}".format(self.replacement))
|
54 |
+
|
55 |
+
@property
|
56 |
+
def num_samples(self):
|
57 |
+
# dataset size might change at runtime
|
58 |
+
if self._num_samples is None:
|
59 |
+
return len(self.data_source)
|
60 |
+
return self._num_samples
|
61 |
+
|
62 |
+
def __iter__(self):
|
63 |
+
n = len(self.data_source)
|
64 |
+
g = torch.Generator()
|
65 |
+
if self.epoch >= 0:
|
66 |
+
g.manual_seed(self.epoch)
|
67 |
+
if self.replacement:
|
68 |
+
for _ in range(self.num_samples // 32):
|
69 |
+
yield from torch.randint(high=n, size=(32,), dtype=torch.int64, generator=g).tolist()
|
70 |
+
yield from torch.randint(high=n, size=(self.num_samples % 32,), dtype=torch.int64,
|
71 |
+
generator=g).tolist()
|
72 |
+
else:
|
73 |
+
yield from torch.randperm(n, generator=self.generator).tolist()
|
74 |
+
|
75 |
+
def __len__(self):
|
76 |
+
return self.num_samples
|
77 |
+
|
78 |
+
def set_epoch(self, epoch):
|
79 |
+
self.epoch = epoch
|
80 |
+
|
81 |
+
|
82 |
+
class DistributedSequentialSampler(data.sampler.Sampler):
|
83 |
+
def __init__(self, num_samples, train_iters, batch_size, rank=-1, world_size=2):
|
84 |
+
super().__init__(num_samples)
|
85 |
+
if rank == -1:
|
86 |
+
rank = 0
|
87 |
+
world_size = 1
|
88 |
+
self.num_samples = num_samples
|
89 |
+
self.rank = rank
|
90 |
+
self.world_size = world_size
|
91 |
+
self.start_iter = 0
|
92 |
+
self.train_iters = train_iters
|
93 |
+
self.batch_size = batch_size
|
94 |
+
self.batch_bias = [i * (num_samples // batch_size) for i in range(batch_size)]
|
95 |
+
|
96 |
+
def __iter__(self):
|
97 |
+
for idx in range(self.start_iter, self.train_iters * 10):
|
98 |
+
batch = [(idx + bias) % self.num_samples for bias in self.batch_bias]
|
99 |
+
tbatch = self._batch(batch)
|
100 |
+
yield tbatch
|
101 |
+
|
102 |
+
def __len__(self):
|
103 |
+
return self.train_iters
|
104 |
+
|
105 |
+
def _batch(self, batch):
|
106 |
+
"""extracts samples only pertaining to this worker's batch"""
|
107 |
+
start = self.rank*self.batch_size//self.world_size
|
108 |
+
end = (self.rank+1)*self.batch_size//self.world_size
|
109 |
+
return batch[start:end]
|
110 |
+
|
111 |
+
|
112 |
+
class DistributedBatchSampler(data.sampler.BatchSampler):
|
113 |
+
"""
|
114 |
+
similar to normal implementation of distributed sampler, except implementation is at the
|
115 |
+
batch sampler level, instead of just the sampler level. This allows wrapping of arbitrary
|
116 |
+
data samplers (sequential, random, WeightedRandomSampler, etc.) with this batch sampler.
|
117 |
+
"""
|
118 |
+
def __init__(self, sampler, batch_size, drop_last, rank=-1, world_size=2, wrap_last=False, gradient_accumulation_steps=None):
|
119 |
+
super(DistributedBatchSampler, self).__init__(sampler, batch_size, drop_last)
|
120 |
+
if rank == -1:
|
121 |
+
assert False, 'should not be here'
|
122 |
+
self.rank = rank
|
123 |
+
self.world_size = world_size
|
124 |
+
self.sampler.wrap_around = 0
|
125 |
+
self.wrap_around = 0
|
126 |
+
self.wrap_last = wrap_last
|
127 |
+
self.start_iter = 0
|
128 |
+
self.effective_batch_size = batch_size if gradient_accumulation_steps is None else batch_size * gradient_accumulation_steps
|
129 |
+
|
130 |
+
def __iter__(self):
|
131 |
+
batch = []
|
132 |
+
i = 0
|
133 |
+
for idx in self.data_iterator(self.sampler, wrap_around=False):
|
134 |
+
batch.append(idx)
|
135 |
+
if len(batch) == self.batch_size:
|
136 |
+
tbatch = self._batch(batch)
|
137 |
+
if i >= self.start_iter * self.effective_batch_size:
|
138 |
+
yield tbatch
|
139 |
+
self.start_iter = 0
|
140 |
+
i += len(batch)
|
141 |
+
batch = []
|
142 |
+
batch_len = len(batch)
|
143 |
+
if batch_len > 0 and not self.drop_last:
|
144 |
+
if self.wrap_last:
|
145 |
+
self.sampler.wrap_around -= (self.batch_size)
|
146 |
+
self.wrap_around += (len(batch))
|
147 |
+
self.wrap_around %= self.batch_size
|
148 |
+
yield self._batch(batch)
|
149 |
+
if self.wrap_last:
|
150 |
+
self.sampler.wrap_around += self.batch_size
|
151 |
+
|
152 |
+
def data_iterator(self, _iter, wrap_around=False):
|
153 |
+
"""iterates through data and handles wrap around"""
|
154 |
+
for i, idx in enumerate(_iter):
|
155 |
+
if i < self.wrap_around%self.batch_size:
|
156 |
+
continue
|
157 |
+
if wrap_around:
|
158 |
+
self.wrap_around += 1
|
159 |
+
self.wrap_around %= self.batch_size
|
160 |
+
yield idx
|
161 |
+
|
162 |
+
def _batch(self, batch):
|
163 |
+
"""extracts samples only pertaining to this worker's batch"""
|
164 |
+
start = self.rank*self.batch_size//self.world_size
|
165 |
+
end = (self.rank+1)*self.batch_size//self.world_size
|
166 |
+
return batch[start:end]
|
167 |
+
|
168 |
+
|
169 |
+
class DistributedMultiDatasetBatchSampler(data.sampler.BatchSampler):
|
170 |
+
"""
|
171 |
+
This is a modality-blended batch sampler which allows to sample a batch data from different dataset alternatively.
|
172 |
+
"""
|
173 |
+
def __init__(self, sampler, batch_size, dataset, drop_last, rank=-1, world_size=2, wrap_last=False, gradient_accumulation_steps=None):
|
174 |
+
super(DistributedMultiDatasetBatchSampler, self).__init__(sampler, batch_size, drop_last)
|
175 |
+
if rank == -1:
|
176 |
+
assert False, 'should not be here'
|
177 |
+
self.rank = rank
|
178 |
+
self.world_size = world_size
|
179 |
+
self.wrap_last = wrap_last
|
180 |
+
self.drop_last = drop_last
|
181 |
+
self.gradient_accumulation_steps = gradient_accumulation_steps
|
182 |
+
self.dataset = dataset
|
183 |
+
self.batch_size = batch_size
|
184 |
+
self.number_of_datasets = len(dataset.datasets.datasets)
|
185 |
+
self.largest_dataset_size = max([_cur_dataset.__len__() for _cur_dataset in dataset.datasets.datasets])
|
186 |
+
|
187 |
+
def __iter__(self):
|
188 |
+
samplers_list = []
|
189 |
+
sampler_iterators = []
|
190 |
+
for dataset_idx in range(self.number_of_datasets):
|
191 |
+
cur_dataset = self.dataset.datasets.datasets[dataset_idx]
|
192 |
+
sampler = torch.utils.data.RandomSampler(cur_dataset)
|
193 |
+
batch_sampler = DistributedBatchSampler(sampler, self.batch_size, self.drop_last, self.rank,
|
194 |
+
self.world_size, self.wrap_last, self.gradient_accumulation_steps)
|
195 |
+
samplers_list.append(batch_sampler)
|
196 |
+
cur_sampler_iterator = batch_sampler.__iter__()
|
197 |
+
sampler_iterators.append(cur_sampler_iterator)
|
198 |
+
|
199 |
+
push_index_val = [0] + self.dataset.datasets.cumulative_sizes[:-1]
|
200 |
+
step = self.batch_size * self.number_of_datasets
|
201 |
+
samples_to_grab = self.batch_size
|
202 |
+
# for this case we want to get all samples in dataset, this force us to resample from the smaller datasets
|
203 |
+
epoch_samples = self.largest_dataset_size * self.number_of_datasets
|
204 |
+
|
205 |
+
for _ in range(0, epoch_samples, step):
|
206 |
+
for i in range(self.number_of_datasets):
|
207 |
+
# for j in range(self.world_size):
|
208 |
+
cur_batch_sampler = sampler_iterators[i]
|
209 |
+
try:
|
210 |
+
cur_sample_org = cur_batch_sampler.__next__()
|
211 |
+
cur_samples = [x + push_index_val[i] for x in cur_sample_org]
|
212 |
+
yield cur_samples
|
213 |
+
except StopIteration:
|
214 |
+
# got to the end of iterator - restart the iterator and continue to get samples
|
215 |
+
# until reaching "epoch_samples"
|
216 |
+
sampler_iterators[i] = samplers_list[i].__iter__()
|
217 |
+
cur_batch_sampler = sampler_iterators[i]
|
218 |
+
cur_sample_org = cur_batch_sampler.__next__()
|
219 |
+
cur_samples = [x + push_index_val[i] for x in cur_sample_org]
|
220 |
+
yield cur_samples
|
221 |
+
|
code/dataset/utils.py
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from header import *
|
2 |
+
import importlib
|
3 |
+
|
4 |
+
|
5 |
+
def process_caption(caption):
|
6 |
+
caption = re.sub(
|
7 |
+
r"([\"()*#:;~])",
|
8 |
+
" ",
|
9 |
+
caption.lower(),
|
10 |
+
)
|
11 |
+
caption = re.sub(
|
12 |
+
r"\s{2,}",
|
13 |
+
" ",
|
14 |
+
caption,
|
15 |
+
)
|
16 |
+
caption = caption.rstrip("\n")
|
17 |
+
caption = caption.strip(" ")
|
18 |
+
|
19 |
+
return caption
|
20 |
+
|
21 |
+
|
22 |
+
def instantiate_from_config(config):
|
23 |
+
if not "target" in config:
|
24 |
+
if config == '__is_first_stage__':
|
25 |
+
return None
|
26 |
+
elif config == "__is_unconditional__":
|
27 |
+
return None
|
28 |
+
raise KeyError("Expected key `target` to instantiate.")
|
29 |
+
return get_obj_from_str(config["target"])(**config.get("params", dict()))
|
30 |
+
|
31 |
+
|
32 |
+
def get_obj_from_str(string, reload=False):
|
33 |
+
module, cls = string.rsplit(".", 1)
|
34 |
+
if reload:
|
35 |
+
module_imp = importlib.import_module(module)
|
36 |
+
importlib.reload(module_imp)
|
37 |
+
return getattr(importlib.import_module(module, package=None), cls)
|
code/dataset/webvid_dataset.py
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright 2023 Rohan Taori, Ishaan Gulrajani, Tianyi Zhang, Yann Dubois, Xuechen Li
|
2 |
+
#
|
3 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4 |
+
# you may not use this file except in compliance with the License.
|
5 |
+
# You may obtain a copy of the License at
|
6 |
+
#
|
7 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8 |
+
#
|
9 |
+
# Unless required by applicable law or agreed to in writing, software
|
10 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 |
+
# See the License for the specific language governing permissions and
|
13 |
+
# limitations under the License.
|
14 |
+
|
15 |
+
import copy
|
16 |
+
import os
|
17 |
+
import json
|
18 |
+
import numpy as np
|
19 |
+
from torch.utils.data import Dataset
|
20 |
+
from .base_dataset import BaseDataset
|
21 |
+
from tqdm import tqdm
|
22 |
+
import pandas as pd
|
23 |
+
from .utils import process_caption
|
24 |
+
import torch
|
25 |
+
|
26 |
+
|
27 |
+
class WebvidDataset(BaseDataset):
|
28 |
+
"""webvid Dataset with video-text pairs."""
|
29 |
+
|
30 |
+
def __init__(self, data_path: str, mm_root_path: str, embed_path: str, dataset_type: str):
|
31 |
+
super(WebvidDataset, self).__init__(data_path, mm_root_path, embed_path, dataset_type)
|
32 |
+
self.embed_path = embed_path
|
33 |
+
|
34 |
+
print('Load WebVid dataset ...')
|
35 |
+
self.mm_path_list, self.caption_list = [], []
|
36 |
+
with open(data_path, 'r', encoding='utf-8') as f:
|
37 |
+
data = json.load(f)
|
38 |
+
for row in tqdm(data, total=len(data)):
|
39 |
+
video_id, one_caption = row["video_name"], row["caption"]
|
40 |
+
self.mm_path_list.append(os.path.join(mm_root_path, video_id))
|
41 |
+
self.caption_list.append(process_caption(one_caption))
|
42 |
+
|
43 |
+
print(f'[!] collect {len(self.mm_path_list)} samples for training')
|
44 |
+
self.dataset_type_list = [dataset_type for _ in range(len(self.caption_list))]
|
code/demo_app.py
ADDED
@@ -0,0 +1,516 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoModel, AutoTokenizer
|
2 |
+
from copy import deepcopy
|
3 |
+
import os
|
4 |
+
import ipdb
|
5 |
+
import gradio as gr
|
6 |
+
import mdtex2html
|
7 |
+
from model.anyToImageVideoAudio import NextGPTModel
|
8 |
+
import torch
|
9 |
+
import json
|
10 |
+
import tempfile
|
11 |
+
from PIL import Image
|
12 |
+
import scipy
|
13 |
+
from config import *
|
14 |
+
import imageio
|
15 |
+
import argparse
|
16 |
+
import re
|
17 |
+
|
18 |
+
# init the model
|
19 |
+
|
20 |
+
parser = argparse.ArgumentParser(description='train parameters')
|
21 |
+
parser.add_argument('--model', type=str, default='nextgpt')
|
22 |
+
parser.add_argument('--nextgpt_ckpt_path', type=str) # the delta parameters trained in each stages
|
23 |
+
parser.add_argument('--stage', type=int, default=3)
|
24 |
+
args = parser.parse_args()
|
25 |
+
args = vars(args)
|
26 |
+
args.update(load_config(args))
|
27 |
+
model = NextGPTModel(**args)
|
28 |
+
delta_ckpt = torch.load(os.path.join(args['nextgpt_ckpt_path'], f'pytorch_model.pt'), map_location=torch.device('cpu'))
|
29 |
+
model.load_state_dict(delta_ckpt, strict=False)
|
30 |
+
model = model.eval().half().cuda()
|
31 |
+
print(f'[!] init the 7b model over ...')
|
32 |
+
|
33 |
+
g_cuda = torch.Generator(device='cuda').manual_seed(13)
|
34 |
+
|
35 |
+
filter_value = -float('Inf')
|
36 |
+
min_word_tokens = 10
|
37 |
+
gen_scale_factor = 4.0
|
38 |
+
stops_id = [[835]]
|
39 |
+
ENCOUNTERS = 1
|
40 |
+
load_sd = True
|
41 |
+
generator = g_cuda
|
42 |
+
|
43 |
+
max_num_imgs = 1
|
44 |
+
max_num_vids = 1
|
45 |
+
height = 320
|
46 |
+
width = 576
|
47 |
+
|
48 |
+
max_num_auds = 1
|
49 |
+
max_length = 246
|
50 |
+
|
51 |
+
"""Override Chatbot.postprocess"""
|
52 |
+
|
53 |
+
|
54 |
+
def postprocess(self, y):
|
55 |
+
if y is None:
|
56 |
+
return []
|
57 |
+
for i, (message, response) in enumerate(y):
|
58 |
+
y[i] = (
|
59 |
+
None if message is None else mdtex2html.convert((message)),
|
60 |
+
None if response is None else mdtex2html.convert(response),
|
61 |
+
)
|
62 |
+
return y
|
63 |
+
|
64 |
+
|
65 |
+
gr.Chatbot.postprocess = postprocess
|
66 |
+
|
67 |
+
|
68 |
+
def parse_text(text, image_path, video_path, audio_path):
|
69 |
+
"""copy from https://github.com/GaiZhenbiao/ChuanhuChatGPT/"""
|
70 |
+
outputs = text
|
71 |
+
lines = text.split("\n")
|
72 |
+
lines = [line for line in lines if line != ""]
|
73 |
+
count = 0
|
74 |
+
for i, line in enumerate(lines):
|
75 |
+
if "```" in line:
|
76 |
+
count += 1
|
77 |
+
items = line.split('`')
|
78 |
+
if count % 2 == 1:
|
79 |
+
lines[i] = f'<pre><code class="language-{items[-1]}">'
|
80 |
+
else:
|
81 |
+
lines[i] = f'<br></code></pre>'
|
82 |
+
else:
|
83 |
+
if i > 0:
|
84 |
+
if count % 2 == 1:
|
85 |
+
line = line.replace("`", "\`")
|
86 |
+
line = line.replace("<", "<")
|
87 |
+
line = line.replace(">", ">")
|
88 |
+
line = line.replace(" ", " ")
|
89 |
+
line = line.replace("*", "*")
|
90 |
+
line = line.replace("_", "_")
|
91 |
+
line = line.replace("-", "-")
|
92 |
+
line = line.replace(".", ".")
|
93 |
+
line = line.replace("!", "!")
|
94 |
+
line = line.replace("(", "(")
|
95 |
+
line = line.replace(")", ")")
|
96 |
+
line = line.replace("$", "$")
|
97 |
+
lines[i] = "<br>" + line
|
98 |
+
text = "".join(lines) + "<br>"
|
99 |
+
res_text = ''
|
100 |
+
split_text = re.split(r' <|> ', text)
|
101 |
+
image_path_list, video_path_list, audio_path_list = [], [], []
|
102 |
+
for st in split_text:
|
103 |
+
if st.startswith('<Image>'):
|
104 |
+
pattern = r'Image>(.*?)<\/Image'
|
105 |
+
matches = re.findall(pattern, text)
|
106 |
+
for m in matches:
|
107 |
+
image_path_list.append(m)
|
108 |
+
elif st.startswith('<Audio>'):
|
109 |
+
pattern = r'Audio>(.*?)<\/Audio'
|
110 |
+
matches = re.findall(pattern, text)
|
111 |
+
for m in matches:
|
112 |
+
audio_path_list.append(m)
|
113 |
+
elif st.startswith('<Video>'):
|
114 |
+
pattern = r'Video>(.*?)<\/Video'
|
115 |
+
matches = re.findall(pattern, text)
|
116 |
+
for m in matches:
|
117 |
+
video_path_list.append(m)
|
118 |
+
else:
|
119 |
+
res_text += st
|
120 |
+
text = res_text
|
121 |
+
if image_path is not None:
|
122 |
+
text += f'<img src="./file={image_path}" style="display: inline-block;width: 250px;max-height: 400px;"><br>'
|
123 |
+
outputs = f'<Image>{image_path}</Image> ' + outputs
|
124 |
+
if len(image_path_list) > 0:
|
125 |
+
for i in image_path_list:
|
126 |
+
text += f'<img src="./file={i}" style="display: inline-block;width: 250px;max-height: 400px;"><br>'
|
127 |
+
outputs = f'<Image>{i}</Image> ' + outputs
|
128 |
+
if video_path is not None:
|
129 |
+
text += f' <video controls playsinline width="500" style="display: inline-block;" src="./file={video_path}"></video><br>'
|
130 |
+
outputs = f'<Video>{video_path}</Video> ' + outputs
|
131 |
+
if len(video_path_list) > 0:
|
132 |
+
for i in video_path_list:
|
133 |
+
text += f' <video controls playsinline width="500" style="display: inline-block;" src="./file={i}"></video><br>'
|
134 |
+
outputs = f'<Video>{i}</Video> ' + outputs
|
135 |
+
if audio_path is not None:
|
136 |
+
text += f'<audio controls playsinline><source src="./file={audio_path}" type="audio/wav"></audio><br>'
|
137 |
+
outputs = f'<Audio>{audio_path}</Audio> ' + outputs
|
138 |
+
if len(audio_path_list) > 0:
|
139 |
+
for i in audio_path_list:
|
140 |
+
text += f'<audio controls playsinline><source src="./file={i}" type="audio/wav"></audio><br>'
|
141 |
+
outputs = f'<Audio>{i}</Audio> ' + outputs
|
142 |
+
# text = text[::-1].replace(">rb<", "", 1)[::-1]
|
143 |
+
text = text[:-len("<br>")].rstrip() if text.endswith("<br>") else text
|
144 |
+
return text, outputs
|
145 |
+
|
146 |
+
|
147 |
+
def save_image_to_local(image: Image.Image):
|
148 |
+
# TODO: Update so the url path is used, to prevent repeat saving.
|
149 |
+
if not os.path.exists('temp'):
|
150 |
+
os.mkdir('temp')
|
151 |
+
filename = os.path.join('temp', next(tempfile._get_candidate_names()) + '.jpg')
|
152 |
+
image.save(filename)
|
153 |
+
return filename
|
154 |
+
|
155 |
+
|
156 |
+
def save_video_to_local(video):
|
157 |
+
if not os.path.exists('temp'):
|
158 |
+
os.mkdir('temp')
|
159 |
+
filename = os.path.join('temp', next(tempfile._get_candidate_names()) + '.mp4')
|
160 |
+
writer = imageio.get_writer(filename, format='FFMPEG', fps=8)
|
161 |
+
for frame in video:
|
162 |
+
writer.append_data(frame)
|
163 |
+
writer.close()
|
164 |
+
return filename
|
165 |
+
|
166 |
+
|
167 |
+
def save_audio_to_local(audio):
|
168 |
+
if not os.path.exists('temp'):
|
169 |
+
os.mkdir('temp')
|
170 |
+
filename = os.path.join('temp', next(tempfile._get_candidate_names()) + '.wav')
|
171 |
+
scipy.io.wavfile.write(filename, rate=16000, data=audio)
|
172 |
+
return filename
|
173 |
+
|
174 |
+
|
175 |
+
def parse_reponse(model_outputs):
|
176 |
+
response = ''
|
177 |
+
text_outputs = []
|
178 |
+
for output_i, p in enumerate(model_outputs):
|
179 |
+
if isinstance(p, str):
|
180 |
+
response += p
|
181 |
+
response += '<br>'
|
182 |
+
text_outputs.append(p)
|
183 |
+
elif 'img' in p.keys():
|
184 |
+
_temp_output = ''
|
185 |
+
for m in p['img']:
|
186 |
+
if isinstance(m, str):
|
187 |
+
response += m.replace(' '.join([f'[IMG{i}]' for i in range(args['num_gen_img_tokens'])]), '')
|
188 |
+
response += '<br>'
|
189 |
+
_temp_output += m.replace(' '.join([f'[IMG{i}]' for i in range(args['num_gen_img_tokens'])]), '')
|
190 |
+
else:
|
191 |
+
filename = save_image_to_local(m[0])
|
192 |
+
print(filename)
|
193 |
+
_temp_output = f'<Image>{filename}</Image> ' + _temp_output
|
194 |
+
response += f'<img src="./file={filename}" style="display: inline-block;width: 250px;max-height: 400px;">'
|
195 |
+
text_outputs.append(_temp_output)
|
196 |
+
elif 'vid' in p.keys():
|
197 |
+
_temp_output = ''
|
198 |
+
for idx, m in enumerate(p['vid']):
|
199 |
+
if isinstance(m, str):
|
200 |
+
response += m.replace(' '.join([f'[VID{i}]' for i in range(args['num_gen_video_tokens'])]), '')
|
201 |
+
response += '<br>'
|
202 |
+
_temp_output += m.replace(' '.join([f'[VID{i}]' for i in range(args['num_gen_video_tokens'])]), '')
|
203 |
+
else:
|
204 |
+
filename = save_video_to_local(m)
|
205 |
+
print(filename)
|
206 |
+
_temp_output = f'<Video>{filename}</Video> ' + _temp_output
|
207 |
+
response += f'<video controls playsinline width="500" style="display: inline-block;" src="./file={filename}"></video>'
|
208 |
+
text_outputs.append(_temp_output)
|
209 |
+
elif 'aud' in p.keys():
|
210 |
+
_temp_output = ''
|
211 |
+
for idx, m in enumerate(p['aud']):
|
212 |
+
if isinstance(m, str):
|
213 |
+
response += m.replace(' '.join([f'[AUD{i}]' for i in range(args['num_gen_audio_tokens'])]), '')
|
214 |
+
response += '<br>'
|
215 |
+
_temp_output += m.replace(' '.join([f'[AUD{i}]' for i in range(args['num_gen_audio_tokens'])]), '')
|
216 |
+
else:
|
217 |
+
filename = save_audio_to_local(m)
|
218 |
+
print(filename)
|
219 |
+
_temp_output = f'<Audio>{filename}</Audio> ' + _temp_output
|
220 |
+
response += f'<audio controls playsinline><source src="./file={filename}" type="audio/wav"></audio>'
|
221 |
+
text_outputs.append(_temp_output)
|
222 |
+
else:
|
223 |
+
pass
|
224 |
+
response = response[:-len("<br>")].rstrip() if response.endswith("<br>") else response
|
225 |
+
return response, text_outputs
|
226 |
+
|
227 |
+
|
228 |
+
def re_predict(
|
229 |
+
prompt_input,
|
230 |
+
image_path,
|
231 |
+
audio_path,
|
232 |
+
video_path,
|
233 |
+
# thermal_path,
|
234 |
+
chatbot,
|
235 |
+
# max_length,
|
236 |
+
top_p,
|
237 |
+
temperature,
|
238 |
+
history,
|
239 |
+
modality_cache,
|
240 |
+
guidance_scale_for_img,
|
241 |
+
num_inference_steps_for_img,
|
242 |
+
guidance_scale_for_vid,
|
243 |
+
num_inference_steps_for_vid,
|
244 |
+
num_frames,
|
245 |
+
guidance_scale_for_aud,
|
246 |
+
num_inference_steps_for_aud,
|
247 |
+
audio_length_in_s
|
248 |
+
):
|
249 |
+
# drop the latest query and answers and generate again
|
250 |
+
|
251 |
+
q, a = history.pop()
|
252 |
+
chatbot.pop()
|
253 |
+
return predict(q, image_path, audio_path, video_path, chatbot, top_p,
|
254 |
+
temperature, history, modality_cache, guidance_scale_for_img, num_inference_steps_for_img,
|
255 |
+
guidance_scale_for_vid, num_inference_steps_for_vid, num_frames,
|
256 |
+
guidance_scale_for_aud, num_inference_steps_for_aud, audio_length_in_s)
|
257 |
+
|
258 |
+
|
259 |
+
def predict(
|
260 |
+
prompt_input,
|
261 |
+
image_path,
|
262 |
+
audio_path,
|
263 |
+
video_path,
|
264 |
+
chatbot,
|
265 |
+
top_p,
|
266 |
+
temperature,
|
267 |
+
history,
|
268 |
+
modality_cache,
|
269 |
+
guidance_scale_for_img,
|
270 |
+
num_inference_steps_for_img,
|
271 |
+
guidance_scale_for_vid,
|
272 |
+
num_inference_steps_for_vid,
|
273 |
+
num_frames,
|
274 |
+
guidance_scale_for_aud,
|
275 |
+
num_inference_steps_for_aud,
|
276 |
+
audio_length_in_s
|
277 |
+
):
|
278 |
+
# prepare the prompt
|
279 |
+
prompt_text = ''
|
280 |
+
|
281 |
+
if len(history) == 0:
|
282 |
+
prompt_text += '### Human: '
|
283 |
+
if image_path is not None:
|
284 |
+
prompt_text += f'<Image>{image_path}</Image> '
|
285 |
+
if audio_path is not None:
|
286 |
+
prompt_text += f'<Audio>{audio_path}</Audio> '
|
287 |
+
if video_path is not None:
|
288 |
+
prompt_text += f'<Video>{video_path}</Video> '
|
289 |
+
prompt_text += f' {prompt_input}'
|
290 |
+
else:
|
291 |
+
for idx, (q, a) in enumerate(history):
|
292 |
+
if idx == 0:
|
293 |
+
prompt_text += f'### Human: {q}\n### Assistant: {a}\n###'
|
294 |
+
else:
|
295 |
+
prompt_text += f' Human: {q}\n### Assistant: {a}\n###'
|
296 |
+
prompt_text += ' Human: '
|
297 |
+
if image_path is not None:
|
298 |
+
prompt_text += f'<Image>{image_path}</Image> '
|
299 |
+
if audio_path is not None:
|
300 |
+
prompt_text += f'<Audio>{audio_path}</Audio> '
|
301 |
+
if video_path is not None:
|
302 |
+
prompt_text += f'<Video>{video_path}</Video> '
|
303 |
+
prompt_text += f' {prompt_input}'
|
304 |
+
print('prompt_text: ', prompt_text)
|
305 |
+
print('image_path: ', image_path)
|
306 |
+
print('audio_path: ', audio_path)
|
307 |
+
print('video_path: ', video_path)
|
308 |
+
response = model.generate({
|
309 |
+
'prompt': prompt_text,
|
310 |
+
'image_paths': [image_path] if image_path else [],
|
311 |
+
'audio_paths': [audio_path] if audio_path else [],
|
312 |
+
'video_paths': [video_path] if video_path else [],
|
313 |
+
# 'thermal_paths': [thermal_path] if thermal_path else [],
|
314 |
+
'top_p': top_p,
|
315 |
+
'temperature': temperature,
|
316 |
+
'max_tgt_len': max_length,
|
317 |
+
'modality_embeds': modality_cache,
|
318 |
+
'filter_value': filter_value, 'min_word_tokens': min_word_tokens,
|
319 |
+
'gen_scale_factor': gen_scale_factor, 'max_num_imgs': max_num_imgs,
|
320 |
+
'stops_id': stops_id,
|
321 |
+
'load_sd': load_sd,
|
322 |
+
'generator': generator,
|
323 |
+
'guidance_scale_for_img': guidance_scale_for_img,
|
324 |
+
'num_inference_steps_for_img': num_inference_steps_for_img,
|
325 |
+
|
326 |
+
'guidance_scale_for_vid': guidance_scale_for_vid,
|
327 |
+
'num_inference_steps_for_vid': num_inference_steps_for_vid,
|
328 |
+
'max_num_vids': max_num_vids,
|
329 |
+
'height': height,
|
330 |
+
'width': width,
|
331 |
+
'num_frames': num_frames,
|
332 |
+
|
333 |
+
'guidance_scale_for_aud': guidance_scale_for_aud,
|
334 |
+
'num_inference_steps_for_aud': num_inference_steps_for_aud,
|
335 |
+
'max_num_auds': max_num_auds,
|
336 |
+
'audio_length_in_s': audio_length_in_s,
|
337 |
+
'ENCOUNTERS': ENCOUNTERS,
|
338 |
+
})
|
339 |
+
response_chat, response_outputs = parse_reponse(response)
|
340 |
+
print('text_outputs: ', response_outputs)
|
341 |
+
user_chat, user_outputs = parse_text(prompt_input, image_path, video_path, audio_path)
|
342 |
+
chatbot.append((user_chat, response_chat))
|
343 |
+
history.append((user_outputs, ''.join(response_outputs).replace('\n###', '')))
|
344 |
+
return chatbot, history, modality_cache, None, None, None,
|
345 |
+
|
346 |
+
|
347 |
+
def reset_user_input():
|
348 |
+
return gr.update(value='')
|
349 |
+
|
350 |
+
|
351 |
+
def reset_dialog():
|
352 |
+
return [], []
|
353 |
+
|
354 |
+
|
355 |
+
def reset_state():
|
356 |
+
return None, None, None, None, [], [], []
|
357 |
+
|
358 |
+
|
359 |
+
def upload_image(conversation, chat_history, image_input):
|
360 |
+
input_image = Image.open(image_input.name).resize(
|
361 |
+
(224, 224)).convert('RGB')
|
362 |
+
input_image.save(image_input.name) # Overwrite with smaller image.
|
363 |
+
conversation += [(f'<img src="./file={image_input.name}" style="display: inline-block;">', "")]
|
364 |
+
return conversation, chat_history + [input_image, ""]
|
365 |
+
|
366 |
+
|
367 |
+
def upload_image_video_audio(gr_image, gr_video, gr_audio, chatbot, history):
|
368 |
+
if gr_image is not None:
|
369 |
+
print(gr_image)
|
370 |
+
chatbot.append(((gr_image.name,), None))
|
371 |
+
history = history + [((gr_image,), None)]
|
372 |
+
if gr_video is not None:
|
373 |
+
print(gr_video)
|
374 |
+
chatbot.append(((gr_video.name,), None))
|
375 |
+
history = history + [((gr_video,), None)]
|
376 |
+
if gr_audio is not None:
|
377 |
+
print(gr_audio)
|
378 |
+
chatbot.append(((gr_audio.name,), None))
|
379 |
+
history = history + [((gr_audio,), None)]
|
380 |
+
return gr.update(interactive=False), gr.update(interactive=False), gr.update(interactive=False), chatbot, history
|
381 |
+
|
382 |
+
|
383 |
+
with gr.Blocks() as demo:
|
384 |
+
|
385 |
+
gr.HTML("""
|
386 |
+
<h1 align="center" style=" display: flex; flex-direction: row; justify-content: center; font-size: 25pt; "><img src='./file=nextgpt.png' width="45" height="45" style="margin-right: 10px;">NExT-GPT</h1>
|
387 |
+
<h3>This is the demo page of NExT-GPT, an any-to-any multimodal LLM that allows for seamless conversion and generation among text, image, video and audio!</h3>
|
388 |
+
<h3>The current initial version of NExT-GPT, limited by the quantity of fine-tuning data and the quality of the base models, may generate some low-quality or hallucinated content. Please interpret the results with caution. We will continue to update the model to enhance its performance. Thank you for trying the demo! If you have any questions or feedback, feel free to contact us.</h3>
|
389 |
+
<div style="display: flex;"><a href='https://next-gpt.github.io'><img src='https://img.shields.io/badge/Project-Page-Green'></a>       <a href='https://github.com/NExT-GPT/NExT-GPT'><img src='https://img.shields.io/badge/Github-Code-blue'></a>       <a href='https://arxiv.org/pdf/2309.05519.pdf'><img src='https://img.shields.io/badge/Paper-PDF-red'></a></div>
|
390 |
+
""")
|
391 |
+
|
392 |
+
with gr.Row():
|
393 |
+
with gr.Column(scale=0.7, min_width=500):
|
394 |
+
with gr.Row():
|
395 |
+
chatbot = gr.Chatbot(label='NExT-GPT Chatbot', avatar_images=((os.path.join(os.path.dirname(__file__), 'user.png')), (os.path.join(os.path.dirname(__file__), "bot.png")))).style(height=440)
|
396 |
+
|
397 |
+
with gr.Tab("User Input"):
|
398 |
+
with gr.Row(scale=3):
|
399 |
+
user_input = gr.Textbox(label="Text", placeholder="Key in something here...", lines=3)
|
400 |
+
with gr.Row(scale=3):
|
401 |
+
with gr.Column(scale=1):
|
402 |
+
# image_btn = gr.UploadButton("🖼️ Upload Image", file_types=["image"])
|
403 |
+
image_path = gr.Image(type="filepath", label="Image") # .style(height=200) # <PIL.Image.Image image mode=RGB size=512x512 at 0x7F6E06738D90>
|
404 |
+
with gr.Column(scale=1):
|
405 |
+
audio_path = gr.Audio(type='filepath') #.style(height=200)
|
406 |
+
with gr.Column(scale=1):
|
407 |
+
video_path = gr.Video() #.style(height=200) # , value=None, interactive=True
|
408 |
+
with gr.Column(scale=0.3, min_width=300):
|
409 |
+
with gr.Group():
|
410 |
+
with gr.Accordion('Text Advanced Options', open=True):
|
411 |
+
top_p = gr.Slider(0, 1, value=0.01, step=0.01, label="Top P", interactive=True)
|
412 |
+
temperature = gr.Slider(0, 1, value=1.0, step=0.01, label="Temperature", interactive=True)
|
413 |
+
with gr.Accordion('Image Advanced Options', open=True):
|
414 |
+
guidance_scale_for_img = gr.Slider(1, 10, value=7.5, step=0.5, label="Guidance scale",
|
415 |
+
interactive=True)
|
416 |
+
num_inference_steps_for_img = gr.Slider(10, 50, value=50, step=1, label="Number of inference steps",
|
417 |
+
interactive=True)
|
418 |
+
with gr.Accordion('Video Advanced Options', open=False):
|
419 |
+
guidance_scale_for_vid = gr.Slider(1, 10, value=7.5, step=0.5, label="Guidance scale",
|
420 |
+
interactive=True)
|
421 |
+
num_inference_steps_for_vid = gr.Slider(10, 50, value=50, step=1, label="Number of inference steps",
|
422 |
+
interactive=True)
|
423 |
+
num_frames = gr.Slider(label='Number of frames', minimum=16, maximum=32, step=8, value=24,
|
424 |
+
interactive=True,
|
425 |
+
info='Note that the content of the video also changes when you change the number of frames.')
|
426 |
+
with gr.Accordion('Audio Advanced Options', open=False):
|
427 |
+
guidance_scale_for_aud = gr.Slider(1, 10, value=7.5, step=0.5, label="Guidance scale",
|
428 |
+
interactive=True)
|
429 |
+
num_inference_steps_for_aud = gr.Slider(10, 50, value=50, step=1, label="Number of inference steps",
|
430 |
+
interactive=True)
|
431 |
+
audio_length_in_s = gr.Slider(1, 9, value=9, step=1, label="The audio length in seconds",
|
432 |
+
interactive=True)
|
433 |
+
with gr.Tab("Operation"):
|
434 |
+
with gr.Row(scale=1):
|
435 |
+
submitBtn = gr.Button(value="Submit & Run", variant="primary")
|
436 |
+
with gr.Row(scale=1):
|
437 |
+
resubmitBtn = gr.Button("Rerun")
|
438 |
+
with gr.Row(scale=1):
|
439 |
+
emptyBtn = gr.Button("Clear History")
|
440 |
+
|
441 |
+
history = gr.State([])
|
442 |
+
modality_cache = gr.State([])
|
443 |
+
|
444 |
+
submitBtn.click(
|
445 |
+
predict, [
|
446 |
+
user_input,
|
447 |
+
image_path,
|
448 |
+
audio_path,
|
449 |
+
video_path,
|
450 |
+
chatbot,
|
451 |
+
# max_length,
|
452 |
+
top_p,
|
453 |
+
temperature,
|
454 |
+
history,
|
455 |
+
modality_cache,
|
456 |
+
guidance_scale_for_img,
|
457 |
+
num_inference_steps_for_img,
|
458 |
+
guidance_scale_for_vid,
|
459 |
+
num_inference_steps_for_vid,
|
460 |
+
num_frames,
|
461 |
+
guidance_scale_for_aud,
|
462 |
+
num_inference_steps_for_aud,
|
463 |
+
audio_length_in_s
|
464 |
+
], [
|
465 |
+
chatbot,
|
466 |
+
history,
|
467 |
+
modality_cache,
|
468 |
+
image_path,
|
469 |
+
audio_path,
|
470 |
+
video_path
|
471 |
+
],
|
472 |
+
show_progress=True
|
473 |
+
)
|
474 |
+
|
475 |
+
resubmitBtn.click(
|
476 |
+
re_predict, [
|
477 |
+
user_input,
|
478 |
+
image_path,
|
479 |
+
audio_path,
|
480 |
+
video_path,
|
481 |
+
chatbot,
|
482 |
+
# max_length,
|
483 |
+
top_p,
|
484 |
+
temperature,
|
485 |
+
history,
|
486 |
+
modality_cache,
|
487 |
+
guidance_scale_for_img,
|
488 |
+
num_inference_steps_for_img,
|
489 |
+
guidance_scale_for_vid,
|
490 |
+
num_inference_steps_for_vid,
|
491 |
+
num_frames,
|
492 |
+
guidance_scale_for_aud,
|
493 |
+
num_inference_steps_for_aud,
|
494 |
+
audio_length_in_s
|
495 |
+
], [
|
496 |
+
chatbot,
|
497 |
+
history,
|
498 |
+
modality_cache,
|
499 |
+
image_path,
|
500 |
+
audio_path,
|
501 |
+
video_path
|
502 |
+
],
|
503 |
+
show_progress=True
|
504 |
+
)
|
505 |
+
|
506 |
+
submitBtn.click(reset_user_input, [], [user_input])
|
507 |
+
emptyBtn.click(reset_state, outputs=[
|
508 |
+
image_path,
|
509 |
+
audio_path,
|
510 |
+
video_path,
|
511 |
+
chatbot,
|
512 |
+
history,
|
513 |
+
modality_cache
|
514 |
+
], show_progress=True)
|
515 |
+
|
516 |
+
demo.queue().launch(share=True, inbrowser=True, server_name='0.0.0.0', server_port=24004)
|
code/dsconfig/stage_1.json
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"train_batch_size": 2,
|
3 |
+
"train_micro_batch_size_per_gpu": 1,
|
4 |
+
"gradient_accumulation_steps": 1,
|
5 |
+
"steps_per_print": 1,
|
6 |
+
"gradient_clipping": 1.0,
|
7 |
+
"zero_optimization": {
|
8 |
+
"stage": 2,
|
9 |
+
"offload_optimizer": {
|
10 |
+
"device": "cpu"
|
11 |
+
},
|
12 |
+
"contiguous_gradients": true,
|
13 |
+
"allgather_bucket_size": 500000000,
|
14 |
+
"allgather_partitions": true
|
15 |
+
},
|
16 |
+
"fp16": {
|
17 |
+
"enabled": true,
|
18 |
+
"opt_level": "O2",
|
19 |
+
"loss_scale": 64,
|
20 |
+
"loss_scale_window": 1000,
|
21 |
+
"initial_scale_power": 16,
|
22 |
+
"hysteresis": 2,
|
23 |
+
"min_loss_scale": 1
|
24 |
+
},
|
25 |
+
"bf16": {
|
26 |
+
"enable": true
|
27 |
+
},
|
28 |
+
"optimizer": {
|
29 |
+
"type": "Adam",
|
30 |
+
"params": {
|
31 |
+
"lr": 0.0004,
|
32 |
+
"betas": [
|
33 |
+
0.9,
|
34 |
+
0.95
|
35 |
+
],
|
36 |
+
"eps": 1e-8,
|
37 |
+
"weight_decay": 0.001
|
38 |
+
}
|
39 |
+
},
|
40 |
+
"scheduler": {
|
41 |
+
"type": "WarmupDecayLR",
|
42 |
+
"params": {
|
43 |
+
"warmup_min_lr": 0,
|
44 |
+
"warmup_max_lr": 0.0005,
|
45 |
+
"warmup_num_steps": 10,
|
46 |
+
"total_num_steps": 10000
|
47 |
+
}
|
48 |
+
},
|
49 |
+
"activation_checkpointing": {
|
50 |
+
"partition_activations": true,
|
51 |
+
"cpu_checkpointing": true,
|
52 |
+
"contiguous_memory_optimization": false,
|
53 |
+
"number_checkpoints": null,
|
54 |
+
"synchronize_checkpoint_boundary": false,
|
55 |
+
"profile": false
|
56 |
+
}
|
57 |
+
|
58 |
+
}
|
code/dsconfig/stage_2.json
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"train_batch_size": 2,
|
3 |
+
"train_micro_batch_size_per_gpu": 1,
|
4 |
+
"gradient_accumulation_steps": 1,
|
5 |
+
"steps_per_print": 1,
|
6 |
+
"gradient_clipping": 1.0,
|
7 |
+
"zero_optimization": {
|
8 |
+
"stage": 2,
|
9 |
+
"offload_optimizer": {
|
10 |
+
"device": "cpu"
|
11 |
+
},
|
12 |
+
"contiguous_gradients": true,
|
13 |
+
"allgather_bucket_size": 500000000,
|
14 |
+
"allgather_partitions": true
|
15 |
+
},
|
16 |
+
"fp16": {
|
17 |
+
"enabled": true,
|
18 |
+
"opt_level": "O2",
|
19 |
+
"loss_scale": 64,
|
20 |
+
"loss_scale_window": 1000,
|
21 |
+
"initial_scale_power": 16,
|
22 |
+
"hysteresis": 2,
|
23 |
+
"min_loss_scale": 1
|
24 |
+
},
|
25 |
+
"bf16": {
|
26 |
+
"enable": true
|
27 |
+
},
|
28 |
+
"optimizer": {
|
29 |
+
"type": "Adam",
|
30 |
+
"params": {
|
31 |
+
"lr": 0.0004,
|
32 |
+
"betas": [
|
33 |
+
0.9,
|
34 |
+
0.95
|
35 |
+
],
|
36 |
+
"eps": 1e-8,
|
37 |
+
"weight_decay": 0.001
|
38 |
+
}
|
39 |
+
},
|
40 |
+
"scheduler": {
|
41 |
+
"type": "WarmupDecayLR",
|
42 |
+
"params": {
|
43 |
+
"warmup_min_lr": 0,
|
44 |
+
"warmup_max_lr": 0.0005,
|
45 |
+
"warmup_num_steps": 10,
|
46 |
+
"total_num_steps": 10000
|
47 |
+
}
|
48 |
+
},
|
49 |
+
"activation_checkpointing": {
|
50 |
+
"partition_activations": true,
|
51 |
+
"cpu_checkpointing": true,
|
52 |
+
"contiguous_memory_optimization": false,
|
53 |
+
"number_checkpoints": null,
|
54 |
+
"synchronize_checkpoint_boundary": false,
|
55 |
+
"profile": false
|
56 |
+
}
|
57 |
+
|
58 |
+
}
|
code/dsconfig/stage_3.json
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"train_batch_size": 2,
|
3 |
+
"train_micro_batch_size_per_gpu": 1,
|
4 |
+
"gradient_accumulation_steps": 1,
|
5 |
+
"steps_per_print": 1,
|
6 |
+
"gradient_clipping": 1.0,
|
7 |
+
"zero_optimization": {
|
8 |
+
"stage": 2,
|
9 |
+
"offload_optimizer": {
|
10 |
+
"device": "cpu"
|
11 |
+
},
|
12 |
+
"contiguous_gradients": true,
|
13 |
+
"allgather_bucket_size": 500000000,
|
14 |
+
"allgather_partitions": true
|
15 |
+
},
|
16 |
+
"fp16": {
|
17 |
+
"enabled": true,
|
18 |
+
"opt_level": "O2",
|
19 |
+
"loss_scale": 64,
|
20 |
+
"loss_scale_window": 1000,
|
21 |
+
"initial_scale_power": 16,
|
22 |
+
"hysteresis": 2,
|
23 |
+
"min_loss_scale": 1
|
24 |
+
},
|
25 |
+
"bf16": {
|
26 |
+
"enable": true
|
27 |
+
},
|
28 |
+
"optimizer": {
|
29 |
+
"type": "Adam",
|
30 |
+
"params": {
|
31 |
+
"lr": 0.0005,
|
32 |
+
"betas": [
|
33 |
+
0.9,
|
34 |
+
0.95
|
35 |
+
],
|
36 |
+
"eps": 1e-8,
|
37 |
+
"weight_decay": 0.001
|
38 |
+
}
|
39 |
+
},
|
40 |
+
"scheduler": {
|
41 |
+
"type": "WarmupDecayLR",
|
42 |
+
"params": {
|
43 |
+
"warmup_min_lr": 0,
|
44 |
+
"warmup_max_lr": 0.0005,
|
45 |
+
"warmup_num_steps": 10,
|
46 |
+
"total_num_steps": 10000
|
47 |
+
}
|
48 |
+
},
|
49 |
+
"activation_checkpointing": {
|
50 |
+
"partition_activations": true,
|
51 |
+
"cpu_checkpointing": true,
|
52 |
+
"contiguous_memory_optimization": false,
|
53 |
+
"number_checkpoints": null,
|
54 |
+
"synchronize_checkpoint_boundary": false,
|
55 |
+
"profile": false
|
56 |
+
}
|
57 |
+
|
58 |
+
}
|
code/header.py
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import torch
|
2 |
+
import datetime
|
3 |
+
import types
|
4 |
+
import deepspeed
|
5 |
+
from transformers.deepspeed import HfDeepSpeedConfig
|
6 |
+
import transformers
|
7 |
+
import numpy as np
|
8 |
+
from collections import OrderedDict
|
9 |
+
from torch.utils.data import Dataset, DataLoader
|
10 |
+
from torch.nn.utils import clip_grad_norm_
|
11 |
+
from torch.cuda.amp import autocast, GradScaler
|
12 |
+
from torch.nn import DataParallel
|
13 |
+
from torch.optim import lr_scheduler
|
14 |
+
import torch.optim as optim
|
15 |
+
import torch.nn as nn
|
16 |
+
import torch.nn.functional as F
|
17 |
+
from tqdm import tqdm
|
18 |
+
import os
|
19 |
+
import re
|
20 |
+
import math
|
21 |
+
import random
|
22 |
+
import json
|
23 |
+
import time
|
24 |
+
import logging
|
25 |
+
from omegaconf import OmegaConf
|
26 |
+
from copy import deepcopy
|
27 |
+
import ipdb
|
28 |
+
import argparse
|
29 |
+
import data
|
30 |
+
from transformers import LlamaTokenizer, LlamaForCausalLM, LlamaConfig
|
31 |
+
from torch.nn.utils.rnn import pad_sequence
|
32 |
+
from peft import LoraConfig, TaskType, get_peft_model
|
33 |
+
from diffusers.utils import export_to_video
|
34 |
+
import scipy
|
35 |
+
from torch.utils.tensorboard import SummaryWriter
|
36 |
+
|
37 |
+
logging.getLogger("transformers").setLevel(logging.WARNING)
|
38 |
+
logging.getLogger("transformers.tokenization_utils").setLevel(logging.ERROR)
|
39 |
+
os.environ['TOKENIZERS_PARALLELISM'] = 'false'
|
code/inference.py
ADDED
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
from model.anyToImageVideoAudio import NextGPTModel
|
3 |
+
import torch
|
4 |
+
import json
|
5 |
+
from config import *
|
6 |
+
import matplotlib.pyplot as plt
|
7 |
+
from diffusers.utils import export_to_video
|
8 |
+
import scipy
|
9 |
+
|
10 |
+
|
11 |
+
def predict(
|
12 |
+
input,
|
13 |
+
image_path=None,
|
14 |
+
audio_path=None,
|
15 |
+
video_path=None,
|
16 |
+
thermal_path=None,
|
17 |
+
max_tgt_len=200,
|
18 |
+
top_p=10.0,
|
19 |
+
temperature=0.1,
|
20 |
+
history=None,
|
21 |
+
modality_cache=None,
|
22 |
+
filter_value=-float('Inf'), min_word_tokens=0,
|
23 |
+
gen_scale_factor=10.0, max_num_imgs=1,
|
24 |
+
stops_id=None,
|
25 |
+
load_sd=True,
|
26 |
+
generator=None,
|
27 |
+
guidance_scale_for_img=7.5,
|
28 |
+
num_inference_steps_for_img=50,
|
29 |
+
guidance_scale_for_vid=7.5,
|
30 |
+
num_inference_steps_for_vid=50,
|
31 |
+
max_num_vids=1,
|
32 |
+
height=320,
|
33 |
+
width=576,
|
34 |
+
num_frames=24,
|
35 |
+
guidance_scale_for_aud=7.5,
|
36 |
+
num_inference_steps_for_aud=50,
|
37 |
+
max_num_auds=1,
|
38 |
+
audio_length_in_s=9,
|
39 |
+
ENCOUNTERS=1,
|
40 |
+
):
|
41 |
+
if image_path is None and audio_path is None and video_path is None and thermal_path is None:
|
42 |
+
# return [(input, "There is no input data provided! Please upload your data and start the conversation.")]
|
43 |
+
print('no image, audio, video, and thermal are input')
|
44 |
+
else:
|
45 |
+
print(
|
46 |
+
f'[!] image path: {image_path}\n[!] audio path: {audio_path}\n[!] video path: {video_path}\n[!] thermal path: {thermal_path}')
|
47 |
+
|
48 |
+
# prepare the prompt
|
49 |
+
prompt_text = ''
|
50 |
+
if history != None:
|
51 |
+
for idx, (q, a) in enumerate(history):
|
52 |
+
if idx == 0:
|
53 |
+
prompt_text += f'{q}\n### Assistant: {a}\n###'
|
54 |
+
else:
|
55 |
+
prompt_text += f' Human: {q}\n### Assistant: {a}\n###'
|
56 |
+
prompt_text += f'### Human: {input}'
|
57 |
+
else:
|
58 |
+
prompt_text += f'### Human: {input}'
|
59 |
+
|
60 |
+
print('prompt_text: ', prompt_text)
|
61 |
+
|
62 |
+
response = model.generate({
|
63 |
+
'prompt': prompt_text,
|
64 |
+
'image_paths': [image_path] if image_path else [],
|
65 |
+
'audio_paths': [audio_path] if audio_path else [],
|
66 |
+
'video_paths': [video_path] if video_path else [],
|
67 |
+
'thermal_paths': [thermal_path] if thermal_path else [],
|
68 |
+
'top_p': top_p,
|
69 |
+
'temperature': temperature,
|
70 |
+
'max_tgt_len': max_tgt_len,
|
71 |
+
'modality_embeds': modality_cache,
|
72 |
+
'filter_value': filter_value, 'min_word_tokens': min_word_tokens,
|
73 |
+
'gen_scale_factor': gen_scale_factor, 'max_num_imgs': max_num_imgs,
|
74 |
+
'stops_id': stops_id,
|
75 |
+
'load_sd': load_sd,
|
76 |
+
'generator': generator,
|
77 |
+
'guidance_scale_for_img': guidance_scale_for_img,
|
78 |
+
'num_inference_steps_for_img': num_inference_steps_for_img,
|
79 |
+
|
80 |
+
'guidance_scale_for_vid': guidance_scale_for_vid,
|
81 |
+
'num_inference_steps_for_vid': num_inference_steps_for_vid,
|
82 |
+
'max_num_vids': max_num_vids,
|
83 |
+
'height': height,
|
84 |
+
'width': width,
|
85 |
+
'num_frames': num_frames,
|
86 |
+
|
87 |
+
'guidance_scale_for_aud': guidance_scale_for_aud,
|
88 |
+
'num_inference_steps_for_aud': num_inference_steps_for_aud,
|
89 |
+
'max_num_auds': max_num_auds,
|
90 |
+
'audio_length_in_s': audio_length_in_s,
|
91 |
+
'ENCOUNTERS': ENCOUNTERS,
|
92 |
+
|
93 |
+
})
|
94 |
+
return response
|
95 |
+
|
96 |
+
|
97 |
+
if __name__ == '__main__':
|
98 |
+
# init the model
|
99 |
+
|
100 |
+
g_cuda = torch.Generator(device='cuda').manual_seed(1337)
|
101 |
+
args = {'model': 'nextgpt',
|
102 |
+
'nextgpt_ckpt_path': '../ckpt/delta_ckpt/nextgpt/7b_tiva_v0/',
|
103 |
+
'max_length': 128,
|
104 |
+
'stage': 3,
|
105 |
+
'root_dir': '../',
|
106 |
+
'mode': 'validate',
|
107 |
+
}
|
108 |
+
args.update(load_config(args))
|
109 |
+
|
110 |
+
model = NextGPTModel(**args)
|
111 |
+
delta_ckpt = torch.load(os.path.join(args['nextgpt_ckpt_path'], 'pytorch_model.pt'), map_location=torch.device('cuda'))
|
112 |
+
# print(delta_ckpt)
|
113 |
+
model.load_state_dict(delta_ckpt, strict=False)
|
114 |
+
model = model.eval().half().cuda()
|
115 |
+
# model = model.eval().cuda()
|
116 |
+
print(f'[!] init the 7b model over ...')
|
117 |
+
|
118 |
+
"""Override Chatbot.postprocess"""
|
119 |
+
max_tgt_length = 150
|
120 |
+
top_p = 1.0
|
121 |
+
temperature = 0.4
|
122 |
+
modality_cache = None
|
123 |
+
|
124 |
+
prompt = 'show me a video. a woman walk a dop in the park.'
|
125 |
+
|
126 |
+
history = []
|
127 |
+
|
128 |
+
output = predict(input=prompt, history=history,
|
129 |
+
max_tgt_len=max_tgt_length, top_p=top_p,
|
130 |
+
temperature=temperature, modality_cache=modality_cache,
|
131 |
+
filter_value=-float('Inf'), min_word_tokens=10,
|
132 |
+
gen_scale_factor=4.0, max_num_imgs=1,
|
133 |
+
stops_id=[[835]],
|
134 |
+
load_sd=True,
|
135 |
+
generator=g_cuda,
|
136 |
+
guidance_scale_for_img=7.5,
|
137 |
+
num_inference_steps_for_img=50,
|
138 |
+
guidance_scale_for_vid=7.5,
|
139 |
+
num_inference_steps_for_vid=50,
|
140 |
+
max_num_vids=1,
|
141 |
+
height=320,
|
142 |
+
width=576,
|
143 |
+
num_frames=24,
|
144 |
+
ENCOUNTERS=1
|
145 |
+
)
|
146 |
+
|
147 |
+
# print("output: ", output)
|
148 |
+
|
149 |
+
for i in output:
|
150 |
+
if isinstance(i, str):
|
151 |
+
print(i)
|
152 |
+
elif 'img' in i.keys():
|
153 |
+
for m in i['img']:
|
154 |
+
if isinstance(m, str):
|
155 |
+
print(m)
|
156 |
+
else:
|
157 |
+
m[0].save(f'./assets/images/{prompt}.jpg')
|
158 |
+
|
159 |
+
elif 'vid' in i.keys():
|
160 |
+
for idx, m in enumerate(i['vid']):
|
161 |
+
if isinstance(m, str):
|
162 |
+
print(m)
|
163 |
+
else:
|
164 |
+
video_path = export_to_video(video_frames=m, output_video_path=f'./assets/videos/{prompt}.mp4')
|
165 |
+
print("video_path: ", video_path)
|
166 |
+
elif 'aud' in i.keys():
|
167 |
+
for idx, m in enumerate(i['aud']):
|
168 |
+
if isinstance(m, str):
|
169 |
+
print(m)
|
170 |
+
else:
|
171 |
+
audio_path = f'./assets/audios/{prompt}.wav'
|
172 |
+
scipy.io.wavfile.write(audio_path, rate=16000, data=m)
|
173 |
+
print("video_path: ", audio_path)
|
174 |
+
else:
|
175 |
+
pass
|
code/model/ImageBind/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Code of Conduct
|
2 |
+
|
3 |
+
## Our Pledge
|
4 |
+
|
5 |
+
In the interest of fostering an open and welcoming environment, we as
|
6 |
+
contributors and maintainers pledge to make participation in our project and
|
7 |
+
our community a harassment-free experience for everyone, regardless of age, body
|
8 |
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
9 |
+
level of experience, education, socio-economic status, nationality, personal
|
10 |
+
appearance, race, religion, or sexual identity and orientation.
|
11 |
+
|
12 |
+
## Our Standards
|
13 |
+
|
14 |
+
Examples of behavior that contributes to creating a positive environment
|
15 |
+
include:
|
16 |
+
|
17 |
+
* Using welcoming and inclusive language
|
18 |
+
* Being respectful of differing viewpoints and experiences
|
19 |
+
* Gracefully accepting constructive criticism
|
20 |
+
* Focusing on what is best for the community
|
21 |
+
* Showing empathy towards other community members
|
22 |
+
|
23 |
+
Examples of unacceptable behavior by participants include:
|
24 |
+
|
25 |
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26 |
+
advances
|
27 |
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28 |
+
* Public or private harassment
|
29 |
+
* Publishing others' private information, such as a physical or electronic
|
30 |
+
address, without explicit permission
|
31 |
+
* Other conduct which could reasonably be considered inappropriate in a
|
32 |
+
professional setting
|
33 |
+
|
34 |
+
## Our Responsibilities
|
35 |
+
|
36 |
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37 |
+
behavior and are expected to take appropriate and fair corrective action in
|
38 |
+
response to any instances of unacceptable behavior.
|
39 |
+
|
40 |
+
Project maintainers have the right and responsibility to remove, edit, or
|
41 |
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42 |
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43 |
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44 |
+
threatening, offensive, or harmful.
|
45 |
+
|
46 |
+
## Scope
|
47 |
+
|
48 |
+
This Code of Conduct applies within all project spaces, and it also applies when
|
49 |
+
an individual is representing the project or its community in public spaces.
|
50 |
+
Examples of representing a project or community include using an official
|
51 |
+
project e-mail address, posting via an official social media account, or acting
|
52 |
+
as an appointed representative at an online or offline event. Representation of
|
53 |
+
a project may be further defined and clarified by project maintainers.
|
54 |
+
|
55 |
+
This Code of Conduct also applies outside the project spaces when there is a
|
56 |
+
reasonable belief that an individual's behavior may have a negative impact on
|
57 |
+
the project or its community.
|
58 |
+
|
59 |
+
## Enforcement
|
60 |
+
|
61 |
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
62 |
+
reported by contacting the project team at <opensource-conduct@fb.com>. All
|
63 |
+
complaints will be reviewed and investigated and will result in a response that
|
64 |
+
is deemed necessary and appropriate to the circumstances. The project team is
|
65 |
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
66 |
+
Further details of specific enforcement policies may be posted separately.
|
67 |
+
|
68 |
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
69 |
+
faith may face temporary or permanent repercussions as determined by other
|
70 |
+
members of the project's leadership.
|
71 |
+
|
72 |
+
## Attribution
|
73 |
+
|
74 |
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
75 |
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
76 |
+
|
77 |
+
[homepage]: https://www.contributor-covenant.org
|
78 |
+
|
79 |
+
For answers to common questions about this code of conduct, see
|
80 |
+
https://www.contributor-covenant.org/faq
|
code/model/ImageBind/CONTRIBUTING.md
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Contributing to ImageBind
|
2 |
+
We want to make contributing to this project as easy and transparent as
|
3 |
+
possible.
|
4 |
+
|
5 |
+
## Pull Requests
|
6 |
+
We actively welcome your pull requests.
|
7 |
+
|
8 |
+
1. Fork the repo and create your branch from `main`.
|
9 |
+
2. If you've added code that should be tested, add tests.
|
10 |
+
3. If you've changed APIs, update the documentation.
|
11 |
+
4. Ensure the test suite passes.
|
12 |
+
5. Make sure your code lints.
|
13 |
+
6. If you haven't already, complete the Contributor License Agreement ("CLA").
|
14 |
+
|
15 |
+
## Contributor License Agreement ("CLA")
|
16 |
+
In order to accept your pull request, we need you to submit a CLA. You only need
|
17 |
+
to do this once to work on any of Meta's open source projects.
|
18 |
+
|
19 |
+
Complete your CLA here: <https://code.facebook.com/cla>
|
20 |
+
|
21 |
+
## Issues
|
22 |
+
We use GitHub issues to track public bugs. Please ensure your description is
|
23 |
+
clear and has sufficient instructions to be able to reproduce the issue.
|
24 |
+
|
25 |
+
Meta has a [bounty program](https://www.facebook.com/whitehat/) for the safe
|
26 |
+
disclosure of security bugs. In those cases, please go through the process
|
27 |
+
outlined on that page and do not file a public issue.
|
28 |
+
|
29 |
+
## License
|
30 |
+
By contributing to Omnivore, you agree that your contributions will be licensed
|
31 |
+
under the [LICENSE](LICENSE) file in the root directory of this source tree.
|
code/model/ImageBind/LICENSE
ADDED
@@ -0,0 +1,437 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Attribution-NonCommercial-ShareAlike 4.0 International
|
2 |
+
|
3 |
+
=======================================================================
|
4 |
+
|
5 |
+
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
6 |
+
does not provide legal services or legal advice. Distribution of
|
7 |
+
Creative Commons public licenses does not create a lawyer-client or
|
8 |
+
other relationship. Creative Commons makes its licenses and related
|
9 |
+
information available on an "as-is" basis. Creative Commons gives no
|
10 |
+
warranties regarding its licenses, any material licensed under their
|
11 |
+
terms and conditions, or any related information. Creative Commons
|
12 |
+
disclaims all liability for damages resulting from their use to the
|
13 |
+
fullest extent possible.
|
14 |
+
|
15 |
+
Using Creative Commons Public Licenses
|
16 |
+
|
17 |
+
Creative Commons public licenses provide a standard set of terms and
|
18 |
+
conditions that creators and other rights holders may use to share
|
19 |
+
original works of authorship and other material subject to copyright
|
20 |
+
and certain other rights specified in the public license below. The
|
21 |
+
following considerations are for informational purposes only, are not
|
22 |
+
exhaustive, and do not form part of our licenses.
|
23 |
+
|
24 |
+
Considerations for licensors: Our public licenses are
|
25 |
+
intended for use by those authorized to give the public
|
26 |
+
permission to use material in ways otherwise restricted by
|
27 |
+
copyright and certain other rights. Our licenses are
|
28 |
+
irrevocable. Licensors should read and understand the terms
|
29 |
+
and conditions of the license they choose before applying it.
|
30 |
+
Licensors should also secure all rights necessary before
|
31 |
+
applying our licenses so that the public can reuse the
|
32 |
+
material as expected. Licensors should clearly mark any
|
33 |
+
material not subject to the license. This includes other CC-
|
34 |
+
licensed material, or material used under an exception or
|
35 |
+
limitation to copyright. More considerations for licensors:
|
36 |
+
wiki.creativecommons.org/Considerations_for_licensors
|
37 |
+
|
38 |
+
Considerations for the public: By using one of our public
|
39 |
+
licenses, a licensor grants the public permission to use the
|
40 |
+
licensed material under specified terms and conditions. If
|
41 |
+
the licensor's permission is not necessary for any reason--for
|
42 |
+
example, because of any applicable exception or limitation to
|
43 |
+
copyright--then that use is not regulated by the license. Our
|
44 |
+
licenses grant only permissions under copyright and certain
|
45 |
+
other rights that a licensor has authority to grant. Use of
|
46 |
+
the licensed material may still be restricted for other
|
47 |
+
reasons, including because others have copyright or other
|
48 |
+
rights in the material. A licensor may make special requests,
|
49 |
+
such as asking that all changes be marked or described.
|
50 |
+
Although not required by our licenses, you are encouraged to
|
51 |
+
respect those requests where reasonable. More considerations
|
52 |
+
for the public:
|
53 |
+
wiki.creativecommons.org/Considerations_for_licensees
|
54 |
+
|
55 |
+
=======================================================================
|
56 |
+
|
57 |
+
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
|
58 |
+
Public License
|
59 |
+
|
60 |
+
By exercising the Licensed Rights (defined below), You accept and agree
|
61 |
+
to be bound by the terms and conditions of this Creative Commons
|
62 |
+
Attribution-NonCommercial-ShareAlike 4.0 International Public License
|
63 |
+
("Public License"). To the extent this Public License may be
|
64 |
+
interpreted as a contract, You are granted the Licensed Rights in
|
65 |
+
consideration of Your acceptance of these terms and conditions, and the
|
66 |
+
Licensor grants You such rights in consideration of benefits the
|
67 |
+
Licensor receives from making the Licensed Material available under
|
68 |
+
these terms and conditions.
|
69 |
+
|
70 |
+
|
71 |
+
Section 1 -- Definitions.
|
72 |
+
|
73 |
+
a. Adapted Material means material subject to Copyright and Similar
|
74 |
+
Rights that is derived from or based upon the Licensed Material
|
75 |
+
and in which the Licensed Material is translated, altered,
|
76 |
+
arranged, transformed, or otherwise modified in a manner requiring
|
77 |
+
permission under the Copyright and Similar Rights held by the
|
78 |
+
Licensor. For purposes of this Public License, where the Licensed
|
79 |
+
Material is a musical work, performance, or sound recording,
|
80 |
+
Adapted Material is always produced where the Licensed Material is
|
81 |
+
synched in timed relation with a moving image.
|
82 |
+
|
83 |
+
b. Adapter's License means the license You apply to Your Copyright
|
84 |
+
and Similar Rights in Your contributions to Adapted Material in
|
85 |
+
accordance with the terms and conditions of this Public License.
|
86 |
+
|
87 |
+
c. BY-NC-SA Compatible License means a license listed at
|
88 |
+
creativecommons.org/compatiblelicenses, approved by Creative
|
89 |
+
Commons as essentially the equivalent of this Public License.
|
90 |
+
|
91 |
+
d. Copyright and Similar Rights means copyright and/or similar rights
|
92 |
+
closely related to copyright including, without limitation,
|
93 |
+
performance, broadcast, sound recording, and Sui Generis Database
|
94 |
+
Rights, without regard to how the rights are labeled or
|
95 |
+
categorized. For purposes of this Public License, the rights
|
96 |
+
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
97 |
+
Rights.
|
98 |
+
|
99 |
+
e. Effective Technological Measures means those measures that, in the
|
100 |
+
absence of proper authority, may not be circumvented under laws
|
101 |
+
fulfilling obligations under Article 11 of the WIPO Copyright
|
102 |
+
Treaty adopted on December 20, 1996, and/or similar international
|
103 |
+
agreements.
|
104 |
+
|
105 |
+
f. Exceptions and Limitations means fair use, fair dealing, and/or
|
106 |
+
any other exception or limitation to Copyright and Similar Rights
|
107 |
+
that applies to Your use of the Licensed Material.
|
108 |
+
|
109 |
+
g. License Elements means the license attributes listed in the name
|
110 |
+
of a Creative Commons Public License. The License Elements of this
|
111 |
+
Public License are Attribution, NonCommercial, and ShareAlike.
|
112 |
+
|
113 |
+
h. Licensed Material means the artistic or literary work, database,
|
114 |
+
or other material to which the Licensor applied this Public
|
115 |
+
License.
|
116 |
+
|
117 |
+
i. Licensed Rights means the rights granted to You subject to the
|
118 |
+
terms and conditions of this Public License, which are limited to
|
119 |
+
all Copyright and Similar Rights that apply to Your use of the
|
120 |
+
Licensed Material and that the Licensor has authority to license.
|
121 |
+
|
122 |
+
j. Licensor means the individual(s) or entity(ies) granting rights
|
123 |
+
under this Public License.
|
124 |
+
|
125 |
+
k. NonCommercial means not primarily intended for or directed towards
|
126 |
+
commercial advantage or monetary compensation. For purposes of
|
127 |
+
this Public License, the exchange of the Licensed Material for
|
128 |
+
other material subject to Copyright and Similar Rights by digital
|
129 |
+
file-sharing or similar means is NonCommercial provided there is
|
130 |
+
no payment of monetary compensation in connection with the
|
131 |
+
exchange.
|
132 |
+
|
133 |
+
l. Share means to provide material to the public by any means or
|
134 |
+
process that requires permission under the Licensed Rights, such
|
135 |
+
as reproduction, public display, public performance, distribution,
|
136 |
+
dissemination, communication, or importation, and to make material
|
137 |
+
available to the public including in ways that members of the
|
138 |
+
public may access the material from a place and at a time
|
139 |
+
individually chosen by them.
|
140 |
+
|
141 |
+
m. Sui Generis Database Rights means rights other than copyright
|
142 |
+
resulting from Directive 96/9/EC of the European Parliament and of
|
143 |
+
the Council of 11 March 1996 on the legal protection of databases,
|
144 |
+
as amended and/or succeeded, as well as other essentially
|
145 |
+
equivalent rights anywhere in the world.
|
146 |
+
|
147 |
+
n. You means the individual or entity exercising the Licensed Rights
|
148 |
+
under this Public License. Your has a corresponding meaning.
|
149 |
+
|
150 |
+
|
151 |
+
Section 2 -- Scope.
|
152 |
+
|
153 |
+
a. License grant.
|
154 |
+
|
155 |
+
1. Subject to the terms and conditions of this Public License,
|
156 |
+
the Licensor hereby grants You a worldwide, royalty-free,
|
157 |
+
non-sublicensable, non-exclusive, irrevocable license to
|
158 |
+
exercise the Licensed Rights in the Licensed Material to:
|
159 |
+
|
160 |
+
a. reproduce and Share the Licensed Material, in whole or
|
161 |
+
in part, for NonCommercial purposes only; and
|
162 |
+
|
163 |
+
b. produce, reproduce, and Share Adapted Material for
|
164 |
+
NonCommercial purposes only.
|
165 |
+
|
166 |
+
2. Exceptions and Limitations. For the avoidance of doubt, where
|
167 |
+
Exceptions and Limitations apply to Your use, this Public
|
168 |
+
License does not apply, and You do not need to comply with
|
169 |
+
its terms and conditions.
|
170 |
+
|
171 |
+
3. Term. The term of this Public License is specified in Section
|
172 |
+
6(a).
|
173 |
+
|
174 |
+
4. Media and formats; technical modifications allowed. The
|
175 |
+
Licensor authorizes You to exercise the Licensed Rights in
|
176 |
+
all media and formats whether now known or hereafter created,
|
177 |
+
and to make technical modifications necessary to do so. The
|
178 |
+
Licensor waives and/or agrees not to assert any right or
|
179 |
+
authority to forbid You from making technical modifications
|
180 |
+
necessary to exercise the Licensed Rights, including
|
181 |
+
technical modifications necessary to circumvent Effective
|
182 |
+
Technological Measures. For purposes of this Public License,
|
183 |
+
simply making modifications authorized by this Section 2(a)
|
184 |
+
(4) never produces Adapted Material.
|
185 |
+
|
186 |
+
5. Downstream recipients.
|
187 |
+
|
188 |
+
a. Offer from the Licensor -- Licensed Material. Every
|
189 |
+
recipient of the Licensed Material automatically
|
190 |
+
receives an offer from the Licensor to exercise the
|
191 |
+
Licensed Rights under the terms and conditions of this
|
192 |
+
Public License.
|
193 |
+
|
194 |
+
b. Additional offer from the Licensor -- Adapted Material.
|
195 |
+
Every recipient of Adapted Material from You
|
196 |
+
automatically receives an offer from the Licensor to
|
197 |
+
exercise the Licensed Rights in the Adapted Material
|
198 |
+
under the conditions of the Adapter's License You apply.
|
199 |
+
|
200 |
+
c. No downstream restrictions. You may not offer or impose
|
201 |
+
any additional or different terms or conditions on, or
|
202 |
+
apply any Effective Technological Measures to, the
|
203 |
+
Licensed Material if doing so restricts exercise of the
|
204 |
+
Licensed Rights by any recipient of the Licensed
|
205 |
+
Material.
|
206 |
+
|
207 |
+
6. No endorsement. Nothing in this Public License constitutes or
|
208 |
+
may be construed as permission to assert or imply that You
|
209 |
+
are, or that Your use of the Licensed Material is, connected
|
210 |
+
with, or sponsored, endorsed, or granted official status by,
|
211 |
+
the Licensor or others designated to receive attribution as
|
212 |
+
provided in Section 3(a)(1)(A)(i).
|
213 |
+
|
214 |
+
b. Other rights.
|
215 |
+
|
216 |
+
1. Moral rights, such as the right of integrity, are not
|
217 |
+
licensed under this Public License, nor are publicity,
|
218 |
+
privacy, and/or other similar personality rights; however, to
|
219 |
+
the extent possible, the Licensor waives and/or agrees not to
|
220 |
+
assert any such rights held by the Licensor to the limited
|
221 |
+
extent necessary to allow You to exercise the Licensed
|
222 |
+
Rights, but not otherwise.
|
223 |
+
|
224 |
+
2. Patent and trademark rights are not licensed under this
|
225 |
+
Public License.
|
226 |
+
|
227 |
+
3. To the extent possible, the Licensor waives any right to
|
228 |
+
collect royalties from You for the exercise of the Licensed
|
229 |
+
Rights, whether directly or through a collecting society
|
230 |
+
under any voluntary or waivable statutory or compulsory
|
231 |
+
licensing scheme. In all other cases the Licensor expressly
|
232 |
+
reserves any right to collect such royalties, including when
|
233 |
+
the Licensed Material is used other than for NonCommercial
|
234 |
+
purposes.
|
235 |
+
|
236 |
+
|
237 |
+
Section 3 -- License Conditions.
|
238 |
+
|
239 |
+
Your exercise of the Licensed Rights is expressly made subject to the
|
240 |
+
following conditions.
|
241 |
+
|
242 |
+
a. Attribution.
|
243 |
+
|
244 |
+
1. If You Share the Licensed Material (including in modified
|
245 |
+
form), You must:
|
246 |
+
|
247 |
+
a. retain the following if it is supplied by the Licensor
|
248 |
+
with the Licensed Material:
|
249 |
+
|
250 |
+
i. identification of the creator(s) of the Licensed
|
251 |
+
Material and any others designated to receive
|
252 |
+
attribution, in any reasonable manner requested by
|
253 |
+
the Licensor (including by pseudonym if
|
254 |
+
designated);
|
255 |
+
|
256 |
+
ii. a copyright notice;
|
257 |
+
|
258 |
+
iii. a notice that refers to this Public License;
|
259 |
+
|
260 |
+
iv. a notice that refers to the disclaimer of
|
261 |
+
warranties;
|
262 |
+
|
263 |
+
v. a URI or hyperlink to the Licensed Material to the
|
264 |
+
extent reasonably practicable;
|
265 |
+
|
266 |
+
b. indicate if You modified the Licensed Material and
|
267 |
+
retain an indication of any previous modifications; and
|
268 |
+
|
269 |
+
c. indicate the Licensed Material is licensed under this
|
270 |
+
Public License, and include the text of, or the URI or
|
271 |
+
hyperlink to, this Public License.
|
272 |
+
|
273 |
+
2. You may satisfy the conditions in Section 3(a)(1) in any
|
274 |
+
reasonable manner based on the medium, means, and context in
|
275 |
+
which You Share the Licensed Material. For example, it may be
|
276 |
+
reasonable to satisfy the conditions by providing a URI or
|
277 |
+
hyperlink to a resource that includes the required
|
278 |
+
information.
|
279 |
+
3. If requested by the Licensor, You must remove any of the
|
280 |
+
information required by Section 3(a)(1)(A) to the extent
|
281 |
+
reasonably practicable.
|
282 |
+
|
283 |
+
b. ShareAlike.
|
284 |
+
|
285 |
+
In addition to the conditions in Section 3(a), if You Share
|
286 |
+
Adapted Material You produce, the following conditions also apply.
|
287 |
+
|
288 |
+
1. The Adapter's License You apply must be a Creative Commons
|
289 |
+
license with the same License Elements, this version or
|
290 |
+
later, or a BY-NC-SA Compatible License.
|
291 |
+
|
292 |
+
2. You must include the text of, or the URI or hyperlink to, the
|
293 |
+
Adapter's License You apply. You may satisfy this condition
|
294 |
+
in any reasonable manner based on the medium, means, and
|
295 |
+
context in which You Share Adapted Material.
|
296 |
+
|
297 |
+
3. You may not offer or impose any additional or different terms
|
298 |
+
or conditions on, or apply any Effective Technological
|
299 |
+
Measures to, Adapted Material that restrict exercise of the
|
300 |
+
rights granted under the Adapter's License You apply.
|
301 |
+
|
302 |
+
|
303 |
+
Section 4 -- Sui Generis Database Rights.
|
304 |
+
|
305 |
+
Where the Licensed Rights include Sui Generis Database Rights that
|
306 |
+
apply to Your use of the Licensed Material:
|
307 |
+
|
308 |
+
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
309 |
+
to extract, reuse, reproduce, and Share all or a substantial
|
310 |
+
portion of the contents of the database for NonCommercial purposes
|
311 |
+
only;
|
312 |
+
|
313 |
+
b. if You include all or a substantial portion of the database
|
314 |
+
contents in a database in which You have Sui Generis Database
|
315 |
+
Rights, then the database in which You have Sui Generis Database
|
316 |
+
Rights (but not its individual contents) is Adapted Material,
|
317 |
+
including for purposes of Section 3(b); and
|
318 |
+
|
319 |
+
c. You must comply with the conditions in Section 3(a) if You Share
|
320 |
+
all or a substantial portion of the contents of the database.
|
321 |
+
|
322 |
+
For the avoidance of doubt, this Section 4 supplements and does not
|
323 |
+
replace Your obligations under this Public License where the Licensed
|
324 |
+
Rights include other Copyright and Similar Rights.
|
325 |
+
|
326 |
+
|
327 |
+
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
328 |
+
|
329 |
+
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
330 |
+
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
331 |
+
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
332 |
+
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
333 |
+
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
334 |
+
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
335 |
+
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
336 |
+
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
337 |
+
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
338 |
+
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
339 |
+
|
340 |
+
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
341 |
+
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
342 |
+
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
343 |
+
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
344 |
+
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
345 |
+
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
346 |
+
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
347 |
+
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
348 |
+
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
349 |
+
|
350 |
+
c. The disclaimer of warranties and limitation of liability provided
|
351 |
+
above shall be interpreted in a manner that, to the extent
|
352 |
+
possible, most closely approximates an absolute disclaimer and
|
353 |
+
waiver of all liability.
|
354 |
+
|
355 |
+
|
356 |
+
Section 6 -- Term and Termination.
|
357 |
+
|
358 |
+
a. This Public License applies for the term of the Copyright and
|
359 |
+
Similar Rights licensed here. However, if You fail to comply with
|
360 |
+
this Public License, then Your rights under this Public License
|
361 |
+
terminate automatically.
|
362 |
+
|
363 |
+
b. Where Your right to use the Licensed Material has terminated under
|
364 |
+
Section 6(a), it reinstates:
|
365 |
+
|
366 |
+
1. automatically as of the date the violation is cured, provided
|
367 |
+
it is cured within 30 days of Your discovery of the
|
368 |
+
violation; or
|
369 |
+
|
370 |
+
2. upon express reinstatement by the Licensor.
|
371 |
+
|
372 |
+
For the avoidance of doubt, this Section 6(b) does not affect any
|
373 |
+
right the Licensor may have to seek remedies for Your violations
|
374 |
+
of this Public License.
|
375 |
+
|
376 |
+
c. For the avoidance of doubt, the Licensor may also offer the
|
377 |
+
Licensed Material under separate terms or conditions or stop
|
378 |
+
distributing the Licensed Material at any time; however, doing so
|
379 |
+
will not terminate this Public License.
|
380 |
+
|
381 |
+
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
382 |
+
License.
|
383 |
+
|
384 |
+
|
385 |
+
Section 7 -- Other Terms and Conditions.
|
386 |
+
|
387 |
+
a. The Licensor shall not be bound by any additional or different
|
388 |
+
terms or conditions communicated by You unless expressly agreed.
|
389 |
+
|
390 |
+
b. Any arrangements, understandings, or agreements regarding the
|
391 |
+
Licensed Material not stated herein are separate from and
|
392 |
+
independent of the terms and conditions of this Public License.
|
393 |
+
|
394 |
+
|
395 |
+
Section 8 -- Interpretation.
|
396 |
+
|
397 |
+
a. For the avoidance of doubt, this Public License does not, and
|
398 |
+
shall not be interpreted to, reduce, limit, restrict, or impose
|
399 |
+
conditions on any use of the Licensed Material that could lawfully
|
400 |
+
be made without permission under this Public License.
|
401 |
+
|
402 |
+
b. To the extent possible, if any provision of this Public License is
|
403 |
+
deemed unenforceable, it shall be automatically reformed to the
|
404 |
+
minimum extent necessary to make it enforceable. If the provision
|
405 |
+
cannot be reformed, it shall be severed from this Public License
|
406 |
+
without affecting the enforceability of the remaining terms and
|
407 |
+
conditions.
|
408 |
+
|
409 |
+
c. No term or condition of this Public License will be waived and no
|
410 |
+
failure to comply consented to unless expressly agreed to by the
|
411 |
+
Licensor.
|
412 |
+
|
413 |
+
d. Nothing in this Public License constitutes or may be interpreted
|
414 |
+
as a limitation upon, or waiver of, any privileges and immunities
|
415 |
+
that apply to the Licensor or You, including from the legal
|
416 |
+
processes of any jurisdiction or authority.
|
417 |
+
|
418 |
+
=======================================================================
|
419 |
+
|
420 |
+
Creative Commons is not a party to its public
|
421 |
+
licenses. Notwithstanding, Creative Commons may elect to apply one of
|
422 |
+
its public licenses to material it publishes and in those instances
|
423 |
+
will be considered the “Licensor.” The text of the Creative Commons
|
424 |
+
public licenses is dedicated to the public domain under the CC0 Public
|
425 |
+
Domain Dedication. Except for the limited purpose of indicating that
|
426 |
+
material is shared under a Creative Commons public license or as
|
427 |
+
otherwise permitted by the Creative Commons policies published at
|
428 |
+
creativecommons.org/policies, Creative Commons does not authorize the
|
429 |
+
use of the trademark "Creative Commons" or any other trademark or logo
|
430 |
+
of Creative Commons without its prior written consent including,
|
431 |
+
without limitation, in connection with any unauthorized modifications
|
432 |
+
to any of its public licenses or any other arrangements,
|
433 |
+
understandings, or agreements concerning use of licensed material. For
|
434 |
+
the avoidance of doubt, this paragraph does not form part of the
|
435 |
+
public licenses.
|
436 |
+
|
437 |
+
Creative Commons may be contacted at creativecommons.org.
|
code/model/ImageBind/README.md
ADDED
@@ -0,0 +1,155 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ImageBind: One Embedding Space To Bind Them All
|
2 |
+
|
3 |
+
**[FAIR, Meta AI](https://ai.facebook.com/research/)**
|
4 |
+
|
5 |
+
Rohit Girdhar*,
|
6 |
+
Alaaeldin El-Nouby*,
|
7 |
+
Zhuang Liu,
|
8 |
+
Mannat Singh,
|
9 |
+
Kalyan Vasudev Alwala,
|
10 |
+
Armand Joulin,
|
11 |
+
Ishan Misra*
|
12 |
+
|
13 |
+
To appear at CVPR 2023 (*Highlighted paper*)
|
14 |
+
|
15 |
+
[[`Paper`](https://facebookresearch.github.io/ImageBind/paper)] [[`Blog`](https://ai.facebook.com/blog/imagebind-six-modalities-binding-ai/)] [[`Demo`](https://imagebind.metademolab.com/)] [[`Supplementary Video`](https://dl.fbaipublicfiles.com/imagebind/imagebind_video.mp4)] [[`BibTex`](#citing-imagebind)]
|
16 |
+
|
17 |
+
PyTorch implementation and pretrained models for ImageBind. For details, see the paper: **[ImageBind: One Embedding Space To Bind Them All](https://facebookresearch.github.io/ImageBind/paper)**.
|
18 |
+
|
19 |
+
ImageBind learns a joint embedding across six different modalities - images, text, audio, depth, thermal, and IMU data. It enables novel emergent applications ‘out-of-the-box’ including cross-modal retrieval, composing modalities with arithmetic, cross-modal detection and generation.
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
![ImageBind](https://user-images.githubusercontent.com/8495451/236859695-ffa13364-3e39-4d99-a8da-fbfab17f9a6b.gif)
|
24 |
+
|
25 |
+
## ImageBind model
|
26 |
+
|
27 |
+
Emergent zero-shot classification performance.
|
28 |
+
|
29 |
+
<table style="margin: auto">
|
30 |
+
<tr>
|
31 |
+
<th>Model</th>
|
32 |
+
<th><span style="color:blue">IN1k</span></th>
|
33 |
+
<th><span style="color:purple">K400</span></th>
|
34 |
+
<th><span style="color:green">NYU-D</span></th>
|
35 |
+
<th><span style="color:LightBlue">ESC</span></th>
|
36 |
+
<th><span style="color:orange">LLVIP</span></th>
|
37 |
+
<th><span style="color:purple">Ego4D</span></th>
|
38 |
+
<th>download</th>
|
39 |
+
</tr>
|
40 |
+
<tr>
|
41 |
+
<td>imagebind_huge</td>
|
42 |
+
<td align="right">77.7</td>
|
43 |
+
<td align="right">50.0</td>
|
44 |
+
<td align="right">54.0</td>
|
45 |
+
<td align="right">66.9</td>
|
46 |
+
<td align="right">63.4</td>
|
47 |
+
<td align="right">25.0</td>
|
48 |
+
<td><a href="https://dl.fbaipublicfiles.com/imagebind/imagebind_huge.pth">checkpoint</a></td>
|
49 |
+
</tr>
|
50 |
+
|
51 |
+
</table>
|
52 |
+
|
53 |
+
## Usage
|
54 |
+
|
55 |
+
Install pytorch 1.13+ and other 3rd party dependencies.
|
56 |
+
|
57 |
+
```shell
|
58 |
+
conda create --name imagebind python=3.8 -y
|
59 |
+
conda activate imagebind
|
60 |
+
|
61 |
+
pip install -r requirements.txt
|
62 |
+
```
|
63 |
+
|
64 |
+
For windows users, you might need to install `soundfile` for reading/writing audio files. (Thanks @congyue1977)
|
65 |
+
|
66 |
+
```
|
67 |
+
pip install soundfile
|
68 |
+
```
|
69 |
+
|
70 |
+
|
71 |
+
Extract and compare features across modalities (e.g. Image, Text and Audio).
|
72 |
+
|
73 |
+
```python
|
74 |
+
import data
|
75 |
+
import torch
|
76 |
+
from models import imagebind_model
|
77 |
+
from models.imagebind_model import ModalityType
|
78 |
+
|
79 |
+
text_list=["A dog.", "A car", "A bird"]
|
80 |
+
image_paths=[".assets/dog_image.jpg", ".assets/car_image.jpg", ".assets/bird_image.jpg"]
|
81 |
+
audio_paths=[".assets/dog_audio.wav", ".assets/car_audio.wav", ".assets/bird_audio.wav"]
|
82 |
+
|
83 |
+
device = "cuda:0" if torch.cuda.is_available() else "cpu"
|
84 |
+
|
85 |
+
# Instantiate model
|
86 |
+
model = imagebind_model.imagebind_huge(pretrained=True)
|
87 |
+
model.eval()
|
88 |
+
model.to(device)
|
89 |
+
|
90 |
+
# Load data
|
91 |
+
inputs = {
|
92 |
+
ModalityType.TEXT: data.load_and_transform_text(text_list, device),
|
93 |
+
ModalityType.VISION: data.load_and_transform_vision_data(image_paths, device),
|
94 |
+
ModalityType.AUDIO: data.load_and_transform_audio_data(audio_paths, device),
|
95 |
+
}
|
96 |
+
|
97 |
+
with torch.no_grad():
|
98 |
+
embeddings = model(inputs)
|
99 |
+
|
100 |
+
print(
|
101 |
+
"Vision x Text: ",
|
102 |
+
torch.softmax(embeddings[ModalityType.VISION] @ embeddings[ModalityType.TEXT].T, dim=-1),
|
103 |
+
)
|
104 |
+
print(
|
105 |
+
"Audio x Text: ",
|
106 |
+
torch.softmax(embeddings[ModalityType.AUDIO] @ embeddings[ModalityType.TEXT].T, dim=-1),
|
107 |
+
)
|
108 |
+
print(
|
109 |
+
"Vision x Audio: ",
|
110 |
+
torch.softmax(embeddings[ModalityType.VISION] @ embeddings[ModalityType.AUDIO].T, dim=-1),
|
111 |
+
)
|
112 |
+
|
113 |
+
# Expected output:
|
114 |
+
#
|
115 |
+
# Vision x Text:
|
116 |
+
# tensor([[9.9761e-01, 2.3694e-03, 1.8612e-05],
|
117 |
+
# [3.3836e-05, 9.9994e-01, 2.4118e-05],
|
118 |
+
# [4.7997e-05, 1.3496e-02, 9.8646e-01]])
|
119 |
+
#
|
120 |
+
# Audio x Text:
|
121 |
+
# tensor([[1., 0., 0.],
|
122 |
+
# [0., 1., 0.],
|
123 |
+
# [0., 0., 1.]])
|
124 |
+
#
|
125 |
+
# Vision x Audio:
|
126 |
+
# tensor([[0.8070, 0.1088, 0.0842],
|
127 |
+
# [0.1036, 0.7884, 0.1079],
|
128 |
+
# [0.0018, 0.0022, 0.9960]])
|
129 |
+
|
130 |
+
```
|
131 |
+
|
132 |
+
## Model card
|
133 |
+
Please see the [model card](model_card.md) for details.
|
134 |
+
|
135 |
+
## License
|
136 |
+
|
137 |
+
ImageBind code and model weights are released under the CC-BY-NC 4.0 license. See [LICENSE](LICENSE) for additional details.
|
138 |
+
|
139 |
+
## Contributing
|
140 |
+
|
141 |
+
See [contributing](CONTRIBUTING.md) and the [code of conduct](CODE_OF_CONDUCT.md).
|
142 |
+
|
143 |
+
## Citing ImageBind
|
144 |
+
|
145 |
+
If you find this repository useful, please consider giving a star :star: and citation
|
146 |
+
|
147 |
+
```
|
148 |
+
@inproceedings{girdhar2023imagebind,
|
149 |
+
title={ImageBind: One Embedding Space To Bind Them All},
|
150 |
+
author={Girdhar, Rohit and El-Nouby, Alaaeldin and Liu, Zhuang
|
151 |
+
and Singh, Mannat and Alwala, Kalyan Vasudev and Joulin, Armand and Misra, Ishan},
|
152 |
+
booktitle={CVPR},
|
153 |
+
year={2023}
|
154 |
+
}
|
155 |
+
```
|
code/model/ImageBind/__init__.py
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
from .models import imagebind_model
|
2 |
+
from .models.imagebind_model import ModalityType
|
code/model/ImageBind/bpe/bpe_simple_vocab_16e6.txt.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:924691ac288e54409236115652ad4aa250f48203de50a9e4722a6ecd48d6804a
|
3 |
+
size 1356917
|
code/model/ImageBind/data.py
ADDED
@@ -0,0 +1,375 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python3
|
2 |
+
# Portions Copyright (c) Meta Platforms, Inc. and affiliates.
|
3 |
+
# All rights reserved.
|
4 |
+
|
5 |
+
# This source code is licensed under the license found in the
|
6 |
+
# LICENSE file in the root directory of this source tree.
|
7 |
+
|
8 |
+
import math
|
9 |
+
|
10 |
+
import torch
|
11 |
+
import torch.nn as nn
|
12 |
+
import torchaudio
|
13 |
+
import logging
|
14 |
+
|
15 |
+
from .models.multimodal_preprocessors import SimpleTokenizer
|
16 |
+
from PIL import Image
|
17 |
+
from pytorchvideo import transforms as pv_transforms
|
18 |
+
from pytorchvideo.data.clip_sampling import ConstantClipsPerVideoSampler
|
19 |
+
from pytorchvideo.data.encoded_video import EncodedVideo
|
20 |
+
|
21 |
+
from torchvision import transforms
|
22 |
+
from torchvision.transforms._transforms_video import NormalizeVideo
|
23 |
+
|
24 |
+
DEFAULT_AUDIO_FRAME_SHIFT_MS = 10 # in milliseconds
|
25 |
+
|
26 |
+
BPE_PATH = "bpe/bpe_simple_vocab_16e6.txt.gz"
|
27 |
+
|
28 |
+
|
29 |
+
def waveform2melspec(waveform, sample_rate, num_mel_bins, target_length):
|
30 |
+
# Based on https://github.com/YuanGongND/ast/blob/d7d8b4b8e06cdaeb6c843cdb38794c1c7692234c/src/dataloader.py#L102
|
31 |
+
waveform -= waveform.mean()
|
32 |
+
fbank = torchaudio.compliance.kaldi.fbank(
|
33 |
+
waveform,
|
34 |
+
htk_compat=True,
|
35 |
+
sample_frequency=sample_rate,
|
36 |
+
use_energy=False,
|
37 |
+
window_type="hanning",
|
38 |
+
num_mel_bins=num_mel_bins,
|
39 |
+
dither=0.0,
|
40 |
+
frame_length=25,
|
41 |
+
frame_shift=DEFAULT_AUDIO_FRAME_SHIFT_MS,
|
42 |
+
)
|
43 |
+
# Convert to [mel_bins, num_frames] shape
|
44 |
+
fbank = fbank.transpose(0, 1)
|
45 |
+
# Pad to target_length
|
46 |
+
n_frames = fbank.size(1)
|
47 |
+
p = target_length - n_frames
|
48 |
+
# if p is too large (say >20%), flash a warning
|
49 |
+
if abs(p) / n_frames > 0.2:
|
50 |
+
logging.warning(
|
51 |
+
"Large gap between audio n_frames(%d) and "
|
52 |
+
"target_length (%d). Is the audio_target_length "
|
53 |
+
"setting correct?",
|
54 |
+
n_frames,
|
55 |
+
target_length,
|
56 |
+
)
|
57 |
+
# cut and pad
|
58 |
+
if p > 0:
|
59 |
+
fbank = torch.nn.functional.pad(fbank, (0, p), mode="constant", value=0)
|
60 |
+
elif p < 0:
|
61 |
+
fbank = fbank[:, 0:target_length]
|
62 |
+
# Convert to [1, mel_bins, num_frames] shape, essentially like a 1
|
63 |
+
# channel image
|
64 |
+
fbank = fbank.unsqueeze(0)
|
65 |
+
return fbank
|
66 |
+
|
67 |
+
|
68 |
+
def get_clip_timepoints(clip_sampler, duration):
|
69 |
+
# Read out all clips in this video
|
70 |
+
all_clips_timepoints = []
|
71 |
+
is_last_clip = False
|
72 |
+
end = 0.0
|
73 |
+
while not is_last_clip:
|
74 |
+
start, end, _, _, is_last_clip = clip_sampler(end, duration, annotation=None)
|
75 |
+
all_clips_timepoints.append((start, end))
|
76 |
+
return all_clips_timepoints
|
77 |
+
|
78 |
+
|
79 |
+
def load_and_transform_vision_data(image_paths, device):
|
80 |
+
if image_paths is None:
|
81 |
+
return None
|
82 |
+
|
83 |
+
image_ouputs = []
|
84 |
+
for image_path in image_paths:
|
85 |
+
data_transform = transforms.Compose(
|
86 |
+
[
|
87 |
+
transforms.Resize(
|
88 |
+
224, interpolation=transforms.InterpolationMode.BICUBIC
|
89 |
+
),
|
90 |
+
transforms.CenterCrop(224),
|
91 |
+
transforms.ToTensor(),
|
92 |
+
transforms.Normalize(
|
93 |
+
mean=(0.48145466, 0.4578275, 0.40821073),
|
94 |
+
std=(0.26862954, 0.26130258, 0.27577711),
|
95 |
+
),
|
96 |
+
]
|
97 |
+
)
|
98 |
+
if isinstance(image_path, Image.Image):
|
99 |
+
image = image_path
|
100 |
+
else:
|
101 |
+
with open(image_path, "rb") as fopen:
|
102 |
+
image = Image.open(fopen).convert("RGB")
|
103 |
+
|
104 |
+
image = data_transform(image).to(device)
|
105 |
+
image_ouputs.append(image)
|
106 |
+
return torch.stack(image_ouputs, dim=0)
|
107 |
+
|
108 |
+
|
109 |
+
def load_and_transform_thermal_data(thermal_paths, device):
|
110 |
+
if thermal_paths is None:
|
111 |
+
return None
|
112 |
+
|
113 |
+
thermal_ouputs = []
|
114 |
+
for thermal_path in thermal_paths:
|
115 |
+
data_transform = transforms.Compose(
|
116 |
+
[
|
117 |
+
transforms.Resize(
|
118 |
+
224, interpolation=transforms.InterpolationMode.BICUBIC
|
119 |
+
),
|
120 |
+
transforms.CenterCrop(224),
|
121 |
+
transforms.ToTensor(),
|
122 |
+
]
|
123 |
+
)
|
124 |
+
with open(thermal_path, "rb") as fopen:
|
125 |
+
thermal = Image.open(fopen).convert("L")
|
126 |
+
thermal = data_transform(thermal).to(device)
|
127 |
+
thermal_ouputs.append(thermal)
|
128 |
+
return torch.stack(thermal_ouputs, dim=0)
|
129 |
+
|
130 |
+
|
131 |
+
def load_and_transform_text(text, device):
|
132 |
+
if text is None:
|
133 |
+
return None
|
134 |
+
tokenizer = SimpleTokenizer(bpe_path=BPE_PATH)
|
135 |
+
tokens = [tokenizer(t).unsqueeze(0).to(device) for t in text]
|
136 |
+
tokens = torch.cat(tokens, dim=0)
|
137 |
+
return tokens
|
138 |
+
|
139 |
+
|
140 |
+
def load_and_transform_audio_data(
|
141 |
+
audio_paths,
|
142 |
+
device,
|
143 |
+
num_mel_bins=128,
|
144 |
+
target_length=204,
|
145 |
+
sample_rate=16000,
|
146 |
+
clip_duration=2,
|
147 |
+
clips_per_video=3,
|
148 |
+
mean=-4.268,
|
149 |
+
std=9.138,
|
150 |
+
):
|
151 |
+
if audio_paths is None:
|
152 |
+
return None
|
153 |
+
|
154 |
+
audio_outputs = []
|
155 |
+
clip_sampler = ConstantClipsPerVideoSampler(
|
156 |
+
clip_duration=clip_duration, clips_per_video=clips_per_video
|
157 |
+
)
|
158 |
+
|
159 |
+
for audio_path in audio_paths:
|
160 |
+
waveform, sr = torchaudio.load(audio_path)
|
161 |
+
if sample_rate != sr:
|
162 |
+
waveform = torchaudio.functional.resample(
|
163 |
+
waveform, orig_freq=sr, new_freq=sample_rate
|
164 |
+
)
|
165 |
+
all_clips_timepoints = get_clip_timepoints(
|
166 |
+
clip_sampler, waveform.size(1) / sample_rate
|
167 |
+
)
|
168 |
+
all_clips = []
|
169 |
+
for clip_timepoints in all_clips_timepoints:
|
170 |
+
waveform_clip = waveform[
|
171 |
+
:,
|
172 |
+
int(clip_timepoints[0] * sample_rate): int(
|
173 |
+
clip_timepoints[1] * sample_rate
|
174 |
+
),
|
175 |
+
]
|
176 |
+
waveform_melspec = waveform2melspec(
|
177 |
+
waveform_clip, sample_rate, num_mel_bins, target_length
|
178 |
+
)
|
179 |
+
all_clips.append(waveform_melspec)
|
180 |
+
|
181 |
+
normalize = transforms.Normalize(mean=mean, std=std)
|
182 |
+
all_clips = [normalize(ac).to(device) for ac in all_clips]
|
183 |
+
|
184 |
+
all_clips = torch.stack(all_clips, dim=0)
|
185 |
+
audio_outputs.append(all_clips)
|
186 |
+
|
187 |
+
return torch.stack(audio_outputs, dim=0)
|
188 |
+
|
189 |
+
|
190 |
+
def get_clip_timepoints(clip_sampler, duration):
|
191 |
+
# Read out all clips in this video
|
192 |
+
all_clips_timepoints = []
|
193 |
+
is_last_clip = False
|
194 |
+
end = 0.0
|
195 |
+
while not is_last_clip:
|
196 |
+
start, end, _, _, is_last_clip = clip_sampler(end, duration, annotation=None)
|
197 |
+
all_clips_timepoints.append((start, end))
|
198 |
+
return all_clips_timepoints
|
199 |
+
|
200 |
+
|
201 |
+
def crop_boxes(boxes, x_offset, y_offset):
|
202 |
+
"""
|
203 |
+
Perform crop on the bounding boxes given the offsets.
|
204 |
+
Args:
|
205 |
+
boxes (ndarray or None): bounding boxes to perform crop. The dimension
|
206 |
+
is `num boxes` x 4.
|
207 |
+
x_offset (int): cropping offset in the x axis.
|
208 |
+
y_offset (int): cropping offset in the y axis.
|
209 |
+
Returns:
|
210 |
+
cropped_boxes (ndarray or None): the cropped boxes with dimension of
|
211 |
+
`num boxes` x 4.
|
212 |
+
"""
|
213 |
+
cropped_boxes = boxes.copy()
|
214 |
+
cropped_boxes[:, [0, 2]] = boxes[:, [0, 2]] - x_offset
|
215 |
+
cropped_boxes[:, [1, 3]] = boxes[:, [1, 3]] - y_offset
|
216 |
+
|
217 |
+
return cropped_boxes
|
218 |
+
|
219 |
+
|
220 |
+
def uniform_crop(images, size, spatial_idx, boxes=None, scale_size=None):
|
221 |
+
"""
|
222 |
+
Perform uniform spatial sampling on the images and corresponding boxes.
|
223 |
+
Args:
|
224 |
+
images (tensor): images to perform uniform crop. The dimension is
|
225 |
+
`num frames` x `channel` x `height` x `width`.
|
226 |
+
size (int): size of height and weight to crop the images.
|
227 |
+
spatial_idx (int): 0, 1, or 2 for left, center, and right crop if width
|
228 |
+
is larger than height. Or 0, 1, or 2 for top, center, and bottom
|
229 |
+
crop if height is larger than width.
|
230 |
+
boxes (ndarray or None): optional. Corresponding boxes to images.
|
231 |
+
Dimension is `num boxes` x 4.
|
232 |
+
scale_size (int): optinal. If not None, resize the images to scale_size before
|
233 |
+
performing any crop.
|
234 |
+
Returns:
|
235 |
+
cropped (tensor): images with dimension of
|
236 |
+
`num frames` x `channel` x `size` x `size`.
|
237 |
+
cropped_boxes (ndarray or None): the cropped boxes with dimension of
|
238 |
+
`num boxes` x 4.
|
239 |
+
"""
|
240 |
+
assert spatial_idx in [0, 1, 2]
|
241 |
+
ndim = len(images.shape)
|
242 |
+
if ndim == 3:
|
243 |
+
images = images.unsqueeze(0)
|
244 |
+
height = images.shape[2]
|
245 |
+
width = images.shape[3]
|
246 |
+
|
247 |
+
if scale_size is not None:
|
248 |
+
if width <= height:
|
249 |
+
width, height = scale_size, int(height / width * scale_size)
|
250 |
+
else:
|
251 |
+
width, height = int(width / height * scale_size), scale_size
|
252 |
+
images = torch.nn.functional.interpolate(
|
253 |
+
images,
|
254 |
+
size=(height, width),
|
255 |
+
mode="bilinear",
|
256 |
+
align_corners=False,
|
257 |
+
)
|
258 |
+
|
259 |
+
y_offset = int(math.ceil((height - size) / 2))
|
260 |
+
x_offset = int(math.ceil((width - size) / 2))
|
261 |
+
|
262 |
+
if height > width:
|
263 |
+
if spatial_idx == 0:
|
264 |
+
y_offset = 0
|
265 |
+
elif spatial_idx == 2:
|
266 |
+
y_offset = height - size
|
267 |
+
else:
|
268 |
+
if spatial_idx == 0:
|
269 |
+
x_offset = 0
|
270 |
+
elif spatial_idx == 2:
|
271 |
+
x_offset = width - size
|
272 |
+
cropped = images[:, :, y_offset : y_offset + size, x_offset : x_offset + size]
|
273 |
+
cropped_boxes = crop_boxes(boxes, x_offset, y_offset) if boxes is not None else None
|
274 |
+
if ndim == 3:
|
275 |
+
cropped = cropped.squeeze(0)
|
276 |
+
return cropped, cropped_boxes
|
277 |
+
|
278 |
+
|
279 |
+
class SpatialCrop(nn.Module):
|
280 |
+
"""
|
281 |
+
Convert the video into 3 smaller clips spatially. Must be used after the
|
282 |
+
temporal crops to get spatial crops, and should be used with
|
283 |
+
-2 in the spatial crop at the slowfast augmentation stage (so full
|
284 |
+
frames are passed in here). Will return a larger list with the
|
285 |
+
3x spatial crops as well.
|
286 |
+
"""
|
287 |
+
|
288 |
+
def __init__(self, crop_size: int = 224, num_crops: int = 3):
|
289 |
+
super().__init__()
|
290 |
+
self.crop_size = crop_size
|
291 |
+
if num_crops == 3:
|
292 |
+
self.crops_to_ext = [0, 1, 2]
|
293 |
+
self.flipped_crops_to_ext = []
|
294 |
+
elif num_crops == 1:
|
295 |
+
self.crops_to_ext = [1]
|
296 |
+
self.flipped_crops_to_ext = []
|
297 |
+
else:
|
298 |
+
raise NotImplementedError("Nothing else supported yet")
|
299 |
+
|
300 |
+
def forward(self, videos):
|
301 |
+
"""
|
302 |
+
Args:
|
303 |
+
videos: A list of C, T_I_V_A.txt, H, W videos.
|
304 |
+
Returns:
|
305 |
+
videos: A list with 3x the number of elements. Each video converted
|
306 |
+
to C, T_I_V_A.txt, H', W' by spatial cropping.
|
307 |
+
"""
|
308 |
+
assert isinstance(videos, list), "Must be a list of videos after temporal crops"
|
309 |
+
assert all([video.ndim == 4 for video in videos]), "Must be (C,T_I_V_A.txt,H,W)"
|
310 |
+
res = []
|
311 |
+
for video in videos:
|
312 |
+
for spatial_idx in self.crops_to_ext:
|
313 |
+
res.append(uniform_crop(video, self.crop_size, spatial_idx)[0])
|
314 |
+
if not self.flipped_crops_to_ext:
|
315 |
+
continue
|
316 |
+
flipped_video = transforms.functional.hflip(video)
|
317 |
+
for spatial_idx in self.flipped_crops_to_ext:
|
318 |
+
res.append(uniform_crop(flipped_video, self.crop_size, spatial_idx)[0])
|
319 |
+
return res
|
320 |
+
|
321 |
+
|
322 |
+
def load_and_transform_video_data(
|
323 |
+
video_paths,
|
324 |
+
device,
|
325 |
+
clip_duration=2,
|
326 |
+
clips_per_video=5,
|
327 |
+
sample_rate=16000,
|
328 |
+
):
|
329 |
+
if video_paths is None:
|
330 |
+
return None
|
331 |
+
|
332 |
+
video_outputs = []
|
333 |
+
video_transform = transforms.Compose(
|
334 |
+
[
|
335 |
+
pv_transforms.ShortSideScale(224),
|
336 |
+
NormalizeVideo(
|
337 |
+
mean=(0.48145466, 0.4578275, 0.40821073),
|
338 |
+
std=(0.26862954, 0.26130258, 0.27577711),
|
339 |
+
),
|
340 |
+
]
|
341 |
+
)
|
342 |
+
|
343 |
+
clip_sampler = ConstantClipsPerVideoSampler(
|
344 |
+
clip_duration=clip_duration, clips_per_video=clips_per_video
|
345 |
+
)
|
346 |
+
frame_sampler = pv_transforms.UniformTemporalSubsample(num_samples=clip_duration)
|
347 |
+
|
348 |
+
for video_path in video_paths:
|
349 |
+
video = EncodedVideo.from_path(
|
350 |
+
video_path,
|
351 |
+
decoder="decord",
|
352 |
+
decode_audio=False,
|
353 |
+
# **{"sample_rate": sample_rate},
|
354 |
+
)
|
355 |
+
|
356 |
+
all_clips_timepoints = get_clip_timepoints(clip_sampler, video.duration)
|
357 |
+
|
358 |
+
all_video = []
|
359 |
+
for clip_timepoints in all_clips_timepoints:
|
360 |
+
# Read the clip, get frames
|
361 |
+
clip = video.get_clip(clip_timepoints[0], clip_timepoints[1])
|
362 |
+
if clip is None:
|
363 |
+
raise ValueError("No clip found")
|
364 |
+
video_clip = frame_sampler(clip["video"])
|
365 |
+
video_clip = video_clip / 255.0 # since this is float, need 0-1
|
366 |
+
|
367 |
+
all_video.append(video_clip)
|
368 |
+
|
369 |
+
all_video = [video_transform(clip) for clip in all_video]
|
370 |
+
all_video = SpatialCrop(224, num_crops=3)(all_video)
|
371 |
+
|
372 |
+
all_video = torch.stack(all_video, dim=0)
|
373 |
+
video_outputs.append(all_video)
|
374 |
+
|
375 |
+
return torch.stack(video_outputs, dim=0).to(device)
|
code/model/ImageBind/model_card.md
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Model Card for ImageBind
|
2 |
+
|
3 |
+
Multimodal joint embedding model for image/video, text, audio, depth, IMU, and thermal images.
|
4 |
+
Input any of the six modalities and get the same sized embedding that can be used for cross-modal and multimodal tasks.
|
5 |
+
|
6 |
+
# Model Details
|
7 |
+
|
8 |
+
## Model Description
|
9 |
+
|
10 |
+
<!-- Provide a longer summary of what this model is/does. -->
|
11 |
+
Multimodal joint embedding model for image/video, text, audio, depth, IMU, and thermal images
|
12 |
+
|
13 |
+
- **Developed by:** Meta AI
|
14 |
+
- **Model type:** Multimodal model
|
15 |
+
- **Language(s) (NLP):** en
|
16 |
+
- **License:** CC BY-NC-SA 4.0
|
17 |
+
- **Resources for more information:**
|
18 |
+
- [GitHub Repo](https://github.com/facebookresearch/ImageBind)
|
19 |
+
|
20 |
+
|
21 |
+
# Uses
|
22 |
+
|
23 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
24 |
+
This model is intended only for research purposes. It provides a joint embedding space for different modalities -- image/video, text, audio, depth, IMU and thermal images.
|
25 |
+
We hope that these joint embeddings can be used for a variety of different cross-modal research, e.g., cross-modal retrieval and combining embeddings from different modalities.
|
26 |
+
|
27 |
+
## Out-of-Scope Use
|
28 |
+
|
29 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
30 |
+
<!-- If the user enters content, print that. If not, but they enter a task in the list, use that. If neither, say "more info needed." -->
|
31 |
+
|
32 |
+
This model is *NOT* intended to be used in any real world application -- commercial or otherwise.
|
33 |
+
It may produce harmful associations with different inputs.
|
34 |
+
The model needs to be investigated and likely re-trained on specific data for any such application.
|
35 |
+
The model is expected to work better on web-based visual data since it was trained on such data.
|
36 |
+
The text encoder is likely to work only on English language text because of the underlying training datasets.
|
37 |
+
|
38 |
+
# Bias, Risks, and Limitations
|
39 |
+
|
40 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
41 |
+
Open-domain joint embedding models are prone to producing specific biases, e.g., study from [CLIP](https://github.com/openai/CLIP/blob/main/model-card.md#bias-and-fairness).
|
42 |
+
Since our model uses such models as initialization, it will exhibit such biases too.
|
43 |
+
Moreover, for learning joint embeddings for other modalities such as audio, thermal, depth, and IMU we leverage datasets that are relatively small. These joint embeddings are thus limited to the concepts present in the datasets. For example, the thermal datasets we used are limited to outdoor street scenes, while the depth datasets are limited to indoor scenes.
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
# Training Details
|
48 |
+
|
49 |
+
## Training Data
|
50 |
+
|
51 |
+
<!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
52 |
+
|
53 |
+
ImageBind uses image-paired data for training -- (image, X) where X is one of text, audio, depth, IMU or thermal data.
|
54 |
+
In particular, we initialize and freeze the image and text encoders using an OpenCLIP ViT-H encoder.
|
55 |
+
We train audio embeddings using Audioset, depth embeddings using the SUN RGB-D dataset, IMU using the Ego4D dataset and thermal embeddings using the LLVIP dataset.
|
56 |
+
We provide the exact training data details in the paper.
|
57 |
+
|
58 |
+
|
59 |
+
## Training Procedure
|
60 |
+
|
61 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
62 |
+
Please refer to the research paper and github repo for exact details on this.
|
63 |
+
|
64 |
+
# Evaluation
|
65 |
+
|
66 |
+
## Testing Data, Factors & Metrics
|
67 |
+
|
68 |
+
We evaluate the model on a variety of different classification benchmarks for each modality.
|
69 |
+
The evaluation details are presented in the paper.
|
70 |
+
The models performance is measured using standard classification metrics such as accuracy and mAP.
|
71 |
+
|
72 |
+
# Citation
|
73 |
+
|
74 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
75 |
+
|
76 |
+
**BibTeX:**
|
77 |
+
```
|
78 |
+
@inproceedings{girdhar2023imagebind,
|
79 |
+
title={ImageBind: One Embedding Space To Bind Them All},
|
80 |
+
author={Girdhar, Rohit and El-Nouby, Alaaeldin and Liu, Zhuang
|
81 |
+
and Singh, Mannat and Alwala, Kalyan Vasudev and Joulin, Armand and Misra, Ishan},
|
82 |
+
booktitle={CVPR},
|
83 |
+
year={2023}
|
84 |
+
}
|
85 |
+
```
|
86 |
+
|
87 |
+
|
88 |
+
# Model Card Contact
|
89 |
+
|
90 |
+
Please reach out to the authors at: rgirdhar@meta.com imisra@meta.com alaaelnouby@gmail.com
|
91 |
+
|
92 |
+
# How to Get Started with the Model
|
93 |
+
|
94 |
+
Our github repo provides a simple example to extract embeddings from images, audio etc.
|
code/model/ImageBind/models/__init__.py
ADDED
File without changes
|
code/model/ImageBind/models/helpers.py
ADDED
@@ -0,0 +1,141 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python3
|
2 |
+
# Portions Copyright (c) Meta Platforms, Inc. and affiliates.
|
3 |
+
# All rights reserved.
|
4 |
+
|
5 |
+
# This source code is licensed under the license found in the
|
6 |
+
# LICENSE file in the root directory of this source tree.
|
7 |
+
|
8 |
+
import math
|
9 |
+
|
10 |
+
import einops
|
11 |
+
import numpy as np
|
12 |
+
import torch
|
13 |
+
|
14 |
+
import torch.nn as nn
|
15 |
+
|
16 |
+
|
17 |
+
class Normalize(nn.Module):
|
18 |
+
def __init__(self, dim: int) -> None:
|
19 |
+
super().__init__()
|
20 |
+
self.dim = dim
|
21 |
+
|
22 |
+
def forward(self, x):
|
23 |
+
return torch.nn.functional.normalize(x, dim=self.dim, p=2)
|
24 |
+
|
25 |
+
|
26 |
+
class LearnableLogitScaling(nn.Module):
|
27 |
+
def __init__(
|
28 |
+
self,
|
29 |
+
logit_scale_init: float = 1 / 0.07,
|
30 |
+
learnable: bool = True,
|
31 |
+
max_logit_scale: float = 100,
|
32 |
+
) -> None:
|
33 |
+
super().__init__()
|
34 |
+
self.max_logit_scale = max_logit_scale
|
35 |
+
self.logit_scale_init = logit_scale_init
|
36 |
+
self.learnable = learnable
|
37 |
+
log_logit_scale = torch.ones([]) * np.log(self.logit_scale_init)
|
38 |
+
if learnable:
|
39 |
+
self.log_logit_scale = nn.Parameter(log_logit_scale)
|
40 |
+
else:
|
41 |
+
self.register_buffer("log_logit_scale", log_logit_scale)
|
42 |
+
|
43 |
+
def forward(self, x):
|
44 |
+
return torch.clip(self.log_logit_scale.exp(), max=self.max_logit_scale) * x
|
45 |
+
|
46 |
+
def extra_repr(self):
|
47 |
+
st = f"logit_scale_init={self.logit_scale_init},learnable={self.learnable}, max_logit_scale={self.max_logit_scale}"
|
48 |
+
return st
|
49 |
+
|
50 |
+
|
51 |
+
class EinOpsRearrange(nn.Module):
|
52 |
+
def __init__(self, rearrange_expr: str, **kwargs) -> None:
|
53 |
+
super().__init__()
|
54 |
+
self.rearrange_expr = rearrange_expr
|
55 |
+
self.kwargs = kwargs
|
56 |
+
|
57 |
+
def forward(self, x):
|
58 |
+
assert isinstance(x, torch.Tensor)
|
59 |
+
return einops.rearrange(x, self.rearrange_expr, **self.kwargs)
|
60 |
+
|
61 |
+
|
62 |
+
class VerboseNNModule(nn.Module):
|
63 |
+
"""
|
64 |
+
Wrapper around nn.Module that prints registered buffers and parameter names.
|
65 |
+
"""
|
66 |
+
|
67 |
+
@staticmethod
|
68 |
+
def get_readable_tensor_repr(name: str, tensor: torch.Tensor) -> str:
|
69 |
+
st = (
|
70 |
+
"("
|
71 |
+
+ name
|
72 |
+
+ "): "
|
73 |
+
+ "tensor("
|
74 |
+
+ str(tuple(tensor[1].shape))
|
75 |
+
+ ", requires_grad="
|
76 |
+
+ str(tensor[1].requires_grad)
|
77 |
+
+ ")\n"
|
78 |
+
)
|
79 |
+
return st
|
80 |
+
|
81 |
+
def extra_repr(self) -> str:
|
82 |
+
named_modules = set()
|
83 |
+
for p in self.named_modules():
|
84 |
+
named_modules.update([p[0]])
|
85 |
+
named_modules = list(named_modules)
|
86 |
+
|
87 |
+
string_repr = ""
|
88 |
+
for p in self.named_parameters():
|
89 |
+
name = p[0].split(".")[0]
|
90 |
+
if name not in named_modules:
|
91 |
+
string_repr += self.get_readable_tensor_repr(name, p)
|
92 |
+
|
93 |
+
for p in self.named_buffers():
|
94 |
+
name = p[0].split(".")[0]
|
95 |
+
string_repr += self.get_readable_tensor_repr(name, p)
|
96 |
+
|
97 |
+
return string_repr
|
98 |
+
|
99 |
+
|
100 |
+
def cast_if_src_dtype(
|
101 |
+
tensor: torch.Tensor, src_dtype: torch.dtype, tgt_dtype: torch.dtype
|
102 |
+
):
|
103 |
+
updated = False
|
104 |
+
if tensor.dtype == src_dtype:
|
105 |
+
tensor = tensor.to(dtype=tgt_dtype)
|
106 |
+
updated = True
|
107 |
+
return tensor, updated
|
108 |
+
|
109 |
+
|
110 |
+
class QuickGELU(nn.Module):
|
111 |
+
# From https://github.com/openai/CLIP/blob/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1/clip/model.py#L166
|
112 |
+
def forward(self, x: torch.Tensor):
|
113 |
+
return x * torch.sigmoid(1.702 * x)
|
114 |
+
|
115 |
+
|
116 |
+
class SelectElement(nn.Module):
|
117 |
+
def __init__(self, index) -> None:
|
118 |
+
super().__init__()
|
119 |
+
self.index = index
|
120 |
+
|
121 |
+
def forward(self, x):
|
122 |
+
assert x.ndim >= 3
|
123 |
+
return x[:, self.index, ...]
|
124 |
+
|
125 |
+
|
126 |
+
class SelectEOSAndProject(nn.Module):
|
127 |
+
"""
|
128 |
+
Text Pooling used in OpenCLIP
|
129 |
+
"""
|
130 |
+
|
131 |
+
def __init__(self, proj: nn.Module) -> None:
|
132 |
+
super().__init__()
|
133 |
+
self.proj = proj
|
134 |
+
|
135 |
+
def forward(self, x, seq_len):
|
136 |
+
assert x.ndim == 3
|
137 |
+
# x is of shape B x L x D
|
138 |
+
# take features from the eot embedding (eot_token is the highest number in each sequence)
|
139 |
+
x = x[torch.arange(x.shape[0]), seq_len]
|
140 |
+
x = self.proj(x)
|
141 |
+
return x
|
code/model/ImageBind/models/imagebind_model.py
ADDED
@@ -0,0 +1,521 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python3
|
2 |
+
# Portions Copyright (c) Meta Platforms, Inc. and affiliates.
|
3 |
+
# All rights reserved.
|
4 |
+
|
5 |
+
# This source code is licensed under the license found in the
|
6 |
+
# LICENSE file in the root directory of this source tree.
|
7 |
+
|
8 |
+
|
9 |
+
import os
|
10 |
+
import urllib
|
11 |
+
from functools import partial
|
12 |
+
from types import SimpleNamespace
|
13 |
+
|
14 |
+
import torch
|
15 |
+
import torch.nn as nn
|
16 |
+
|
17 |
+
from .helpers import (
|
18 |
+
EinOpsRearrange,
|
19 |
+
LearnableLogitScaling,
|
20 |
+
Normalize,
|
21 |
+
SelectElement,
|
22 |
+
SelectEOSAndProject,
|
23 |
+
)
|
24 |
+
from .multimodal_preprocessors import (
|
25 |
+
AudioPreprocessor,
|
26 |
+
IMUPreprocessor,
|
27 |
+
PadIm2Video,
|
28 |
+
PatchEmbedGeneric,
|
29 |
+
RGBDTPreprocessor,
|
30 |
+
SpatioTemporalPosEmbeddingHelper,
|
31 |
+
TextPreprocessor,
|
32 |
+
ThermalPreprocessor,
|
33 |
+
)
|
34 |
+
|
35 |
+
from .transformer import MultiheadAttention, SimpleTransformer
|
36 |
+
|
37 |
+
|
38 |
+
ModalityType = SimpleNamespace(
|
39 |
+
VISION="vision",
|
40 |
+
TEXT="text",
|
41 |
+
AUDIO="audio",
|
42 |
+
THERMAL="thermal",
|
43 |
+
DEPTH="depth",
|
44 |
+
IMU="imu",
|
45 |
+
)
|
46 |
+
|
47 |
+
|
48 |
+
class ImageBindModel(nn.Module):
|
49 |
+
def __init__(
|
50 |
+
self,
|
51 |
+
video_frames=2,
|
52 |
+
kernel_size=(2, 14, 14),
|
53 |
+
audio_kernel_size=16,
|
54 |
+
audio_stride=10,
|
55 |
+
out_embed_dim=768,
|
56 |
+
vision_embed_dim=1024,
|
57 |
+
vision_num_blocks=24,
|
58 |
+
vision_num_heads=16,
|
59 |
+
audio_embed_dim=768,
|
60 |
+
audio_num_blocks=12,
|
61 |
+
audio_num_heads=12,
|
62 |
+
audio_num_mel_bins=128,
|
63 |
+
audio_target_len=204,
|
64 |
+
audio_drop_path=0.1,
|
65 |
+
text_embed_dim=768,
|
66 |
+
text_num_blocks=12,
|
67 |
+
text_num_heads=12,
|
68 |
+
depth_embed_dim=384,
|
69 |
+
depth_kernel_size=16,
|
70 |
+
depth_num_blocks=12,
|
71 |
+
depth_num_heads=8,
|
72 |
+
depth_drop_path=0.0,
|
73 |
+
thermal_embed_dim=768,
|
74 |
+
thermal_kernel_size=16,
|
75 |
+
thermal_num_blocks=12,
|
76 |
+
thermal_num_heads=12,
|
77 |
+
thermal_drop_path=0.0,
|
78 |
+
imu_embed_dim=512,
|
79 |
+
imu_kernel_size=8,
|
80 |
+
imu_num_blocks=6,
|
81 |
+
imu_num_heads=8,
|
82 |
+
imu_drop_path=0.7,
|
83 |
+
):
|
84 |
+
super().__init__()
|
85 |
+
|
86 |
+
self.modality_preprocessors = self._create_modality_preprocessors(
|
87 |
+
video_frames,
|
88 |
+
vision_embed_dim,
|
89 |
+
kernel_size,
|
90 |
+
text_embed_dim,
|
91 |
+
audio_embed_dim,
|
92 |
+
audio_kernel_size,
|
93 |
+
audio_stride,
|
94 |
+
audio_num_mel_bins,
|
95 |
+
audio_target_len,
|
96 |
+
depth_embed_dim,
|
97 |
+
depth_kernel_size,
|
98 |
+
thermal_embed_dim,
|
99 |
+
thermal_kernel_size,
|
100 |
+
imu_embed_dim,
|
101 |
+
)
|
102 |
+
|
103 |
+
self.modality_trunks = self._create_modality_trunks(
|
104 |
+
vision_embed_dim,
|
105 |
+
vision_num_blocks,
|
106 |
+
vision_num_heads,
|
107 |
+
text_embed_dim,
|
108 |
+
text_num_blocks,
|
109 |
+
text_num_heads,
|
110 |
+
audio_embed_dim,
|
111 |
+
audio_num_blocks,
|
112 |
+
audio_num_heads,
|
113 |
+
audio_drop_path,
|
114 |
+
depth_embed_dim,
|
115 |
+
depth_num_blocks,
|
116 |
+
depth_num_heads,
|
117 |
+
depth_drop_path,
|
118 |
+
thermal_embed_dim,
|
119 |
+
thermal_num_blocks,
|
120 |
+
thermal_num_heads,
|
121 |
+
thermal_drop_path,
|
122 |
+
imu_embed_dim,
|
123 |
+
imu_num_blocks,
|
124 |
+
imu_num_heads,
|
125 |
+
imu_drop_path,
|
126 |
+
)
|
127 |
+
|
128 |
+
self.modality_heads = self._create_modality_heads(
|
129 |
+
out_embed_dim,
|
130 |
+
vision_embed_dim,
|
131 |
+
text_embed_dim,
|
132 |
+
audio_embed_dim,
|
133 |
+
depth_embed_dim,
|
134 |
+
thermal_embed_dim,
|
135 |
+
imu_embed_dim,
|
136 |
+
)
|
137 |
+
|
138 |
+
self.modality_postprocessors = self._create_modality_postprocessors(
|
139 |
+
out_embed_dim
|
140 |
+
)
|
141 |
+
|
142 |
+
def _create_modality_preprocessors(
|
143 |
+
self,
|
144 |
+
video_frames=2,
|
145 |
+
vision_embed_dim=1024,
|
146 |
+
kernel_size=(2, 14, 14),
|
147 |
+
text_embed_dim=768,
|
148 |
+
audio_embed_dim=768,
|
149 |
+
audio_kernel_size=16,
|
150 |
+
audio_stride=10,
|
151 |
+
audio_num_mel_bins=128,
|
152 |
+
audio_target_len=204,
|
153 |
+
depth_embed_dim=768,
|
154 |
+
depth_kernel_size=16,
|
155 |
+
thermal_embed_dim=768,
|
156 |
+
thermal_kernel_size=16,
|
157 |
+
imu_embed_dim=512,
|
158 |
+
):
|
159 |
+
rgbt_stem = PatchEmbedGeneric(
|
160 |
+
proj_stem=[
|
161 |
+
PadIm2Video(pad_type="repeat", ntimes=2),
|
162 |
+
nn.Conv3d(
|
163 |
+
in_channels=3,
|
164 |
+
kernel_size=kernel_size,
|
165 |
+
out_channels=vision_embed_dim,
|
166 |
+
stride=kernel_size,
|
167 |
+
bias=False,
|
168 |
+
),
|
169 |
+
]
|
170 |
+
)
|
171 |
+
rgbt_preprocessor = RGBDTPreprocessor(
|
172 |
+
img_size=[3, video_frames, 224, 224],
|
173 |
+
num_cls_tokens=1,
|
174 |
+
pos_embed_fn=partial(SpatioTemporalPosEmbeddingHelper, learnable=True),
|
175 |
+
rgbt_stem=rgbt_stem,
|
176 |
+
depth_stem=None,
|
177 |
+
)
|
178 |
+
|
179 |
+
text_preprocessor = TextPreprocessor(
|
180 |
+
context_length=77,
|
181 |
+
vocab_size=49408,
|
182 |
+
embed_dim=text_embed_dim,
|
183 |
+
causal_masking=True,
|
184 |
+
)
|
185 |
+
|
186 |
+
audio_stem = PatchEmbedGeneric(
|
187 |
+
proj_stem=[
|
188 |
+
nn.Conv2d(
|
189 |
+
in_channels=1,
|
190 |
+
kernel_size=audio_kernel_size,
|
191 |
+
stride=audio_stride,
|
192 |
+
out_channels=audio_embed_dim,
|
193 |
+
bias=False,
|
194 |
+
),
|
195 |
+
],
|
196 |
+
norm_layer=nn.LayerNorm(normalized_shape=audio_embed_dim),
|
197 |
+
)
|
198 |
+
audio_preprocessor = AudioPreprocessor(
|
199 |
+
img_size=[1, audio_num_mel_bins, audio_target_len],
|
200 |
+
num_cls_tokens=1,
|
201 |
+
pos_embed_fn=partial(SpatioTemporalPosEmbeddingHelper, learnable=True),
|
202 |
+
audio_stem=audio_stem,
|
203 |
+
)
|
204 |
+
|
205 |
+
depth_stem = PatchEmbedGeneric(
|
206 |
+
[
|
207 |
+
nn.Conv2d(
|
208 |
+
kernel_size=depth_kernel_size,
|
209 |
+
in_channels=1,
|
210 |
+
out_channels=depth_embed_dim,
|
211 |
+
stride=depth_kernel_size,
|
212 |
+
bias=False,
|
213 |
+
),
|
214 |
+
],
|
215 |
+
norm_layer=nn.LayerNorm(normalized_shape=depth_embed_dim),
|
216 |
+
)
|
217 |
+
|
218 |
+
depth_preprocessor = RGBDTPreprocessor(
|
219 |
+
img_size=[1, 224, 224],
|
220 |
+
num_cls_tokens=1,
|
221 |
+
pos_embed_fn=partial(SpatioTemporalPosEmbeddingHelper, learnable=True),
|
222 |
+
rgbt_stem=None,
|
223 |
+
depth_stem=depth_stem,
|
224 |
+
)
|
225 |
+
|
226 |
+
thermal_stem = PatchEmbedGeneric(
|
227 |
+
[
|
228 |
+
nn.Conv2d(
|
229 |
+
kernel_size=thermal_kernel_size,
|
230 |
+
in_channels=1,
|
231 |
+
out_channels=thermal_embed_dim,
|
232 |
+
stride=thermal_kernel_size,
|
233 |
+
bias=False,
|
234 |
+
),
|
235 |
+
],
|
236 |
+
norm_layer=nn.LayerNorm(normalized_shape=thermal_embed_dim),
|
237 |
+
)
|
238 |
+
thermal_preprocessor = ThermalPreprocessor(
|
239 |
+
img_size=[1, 224, 224],
|
240 |
+
num_cls_tokens=1,
|
241 |
+
pos_embed_fn=partial(SpatioTemporalPosEmbeddingHelper, learnable=True),
|
242 |
+
thermal_stem=thermal_stem,
|
243 |
+
)
|
244 |
+
|
245 |
+
imu_stem = PatchEmbedGeneric(
|
246 |
+
[
|
247 |
+
nn.Linear(
|
248 |
+
in_features=48,
|
249 |
+
out_features=imu_embed_dim,
|
250 |
+
bias=False,
|
251 |
+
),
|
252 |
+
],
|
253 |
+
norm_layer=nn.LayerNorm(normalized_shape=imu_embed_dim),
|
254 |
+
)
|
255 |
+
|
256 |
+
imu_preprocessor = IMUPreprocessor(
|
257 |
+
img_size=[6, 2000],
|
258 |
+
num_cls_tokens=1,
|
259 |
+
kernel_size=8,
|
260 |
+
embed_dim=imu_embed_dim,
|
261 |
+
pos_embed_fn=partial(SpatioTemporalPosEmbeddingHelper, learnable=True),
|
262 |
+
imu_stem=imu_stem,
|
263 |
+
)
|
264 |
+
|
265 |
+
modality_preprocessors = {
|
266 |
+
ModalityType.VISION: rgbt_preprocessor,
|
267 |
+
ModalityType.TEXT: text_preprocessor,
|
268 |
+
ModalityType.AUDIO: audio_preprocessor,
|
269 |
+
ModalityType.DEPTH: depth_preprocessor,
|
270 |
+
ModalityType.THERMAL: thermal_preprocessor,
|
271 |
+
ModalityType.IMU: imu_preprocessor,
|
272 |
+
}
|
273 |
+
|
274 |
+
return nn.ModuleDict(modality_preprocessors)
|
275 |
+
|
276 |
+
def _create_modality_trunks(
|
277 |
+
self,
|
278 |
+
vision_embed_dim=1024,
|
279 |
+
vision_num_blocks=24,
|
280 |
+
vision_num_heads=16,
|
281 |
+
text_embed_dim=768,
|
282 |
+
text_num_blocks=12,
|
283 |
+
text_num_heads=12,
|
284 |
+
audio_embed_dim=768,
|
285 |
+
audio_num_blocks=12,
|
286 |
+
audio_num_heads=12,
|
287 |
+
audio_drop_path=0.0,
|
288 |
+
depth_embed_dim=768,
|
289 |
+
depth_num_blocks=12,
|
290 |
+
depth_num_heads=12,
|
291 |
+
depth_drop_path=0.0,
|
292 |
+
thermal_embed_dim=768,
|
293 |
+
thermal_num_blocks=12,
|
294 |
+
thermal_num_heads=12,
|
295 |
+
thermal_drop_path=0.0,
|
296 |
+
imu_embed_dim=512,
|
297 |
+
imu_num_blocks=6,
|
298 |
+
imu_num_heads=8,
|
299 |
+
imu_drop_path=0.7,
|
300 |
+
):
|
301 |
+
def instantiate_trunk(
|
302 |
+
embed_dim, num_blocks, num_heads, pre_transformer_ln, add_bias_kv, drop_path
|
303 |
+
):
|
304 |
+
return SimpleTransformer(
|
305 |
+
embed_dim=embed_dim,
|
306 |
+
num_blocks=num_blocks,
|
307 |
+
ffn_dropout_rate=0.0,
|
308 |
+
drop_path_rate=drop_path,
|
309 |
+
attn_target=partial(
|
310 |
+
MultiheadAttention,
|
311 |
+
embed_dim=embed_dim,
|
312 |
+
num_heads=num_heads,
|
313 |
+
bias=True,
|
314 |
+
add_bias_kv=add_bias_kv,
|
315 |
+
),
|
316 |
+
pre_transformer_layer=nn.Sequential(
|
317 |
+
nn.LayerNorm(embed_dim, eps=1e-6)
|
318 |
+
if pre_transformer_ln
|
319 |
+
else nn.Identity(),
|
320 |
+
EinOpsRearrange("b l d -> l b d"),
|
321 |
+
),
|
322 |
+
post_transformer_layer=EinOpsRearrange("l b d -> b l d"),
|
323 |
+
)
|
324 |
+
|
325 |
+
modality_trunks = {}
|
326 |
+
modality_trunks[ModalityType.VISION] = instantiate_trunk(
|
327 |
+
vision_embed_dim,
|
328 |
+
vision_num_blocks,
|
329 |
+
vision_num_heads,
|
330 |
+
pre_transformer_ln=True,
|
331 |
+
add_bias_kv=False,
|
332 |
+
drop_path=0.0,
|
333 |
+
)
|
334 |
+
modality_trunks[ModalityType.TEXT] = instantiate_trunk(
|
335 |
+
text_embed_dim,
|
336 |
+
text_num_blocks,
|
337 |
+
text_num_heads,
|
338 |
+
pre_transformer_ln=False,
|
339 |
+
add_bias_kv=False,
|
340 |
+
drop_path=0.0,
|
341 |
+
)
|
342 |
+
modality_trunks[ModalityType.AUDIO] = instantiate_trunk(
|
343 |
+
audio_embed_dim,
|
344 |
+
audio_num_blocks,
|
345 |
+
audio_num_heads,
|
346 |
+
pre_transformer_ln=False,
|
347 |
+
add_bias_kv=True,
|
348 |
+
drop_path=audio_drop_path,
|
349 |
+
)
|
350 |
+
modality_trunks[ModalityType.DEPTH] = instantiate_trunk(
|
351 |
+
depth_embed_dim,
|
352 |
+
depth_num_blocks,
|
353 |
+
depth_num_heads,
|
354 |
+
pre_transformer_ln=False,
|
355 |
+
add_bias_kv=True,
|
356 |
+
drop_path=depth_drop_path,
|
357 |
+
)
|
358 |
+
modality_trunks[ModalityType.THERMAL] = instantiate_trunk(
|
359 |
+
thermal_embed_dim,
|
360 |
+
thermal_num_blocks,
|
361 |
+
thermal_num_heads,
|
362 |
+
pre_transformer_ln=False,
|
363 |
+
add_bias_kv=True,
|
364 |
+
drop_path=thermal_drop_path,
|
365 |
+
)
|
366 |
+
modality_trunks[ModalityType.IMU] = instantiate_trunk(
|
367 |
+
imu_embed_dim,
|
368 |
+
imu_num_blocks,
|
369 |
+
imu_num_heads,
|
370 |
+
pre_transformer_ln=False,
|
371 |
+
add_bias_kv=True,
|
372 |
+
drop_path=imu_drop_path,
|
373 |
+
)
|
374 |
+
|
375 |
+
return nn.ModuleDict(modality_trunks)
|
376 |
+
|
377 |
+
def _create_modality_heads(
|
378 |
+
self,
|
379 |
+
out_embed_dim,
|
380 |
+
vision_embed_dim,
|
381 |
+
text_embed_dim,
|
382 |
+
audio_embed_dim,
|
383 |
+
depth_embed_dim,
|
384 |
+
thermal_embed_dim,
|
385 |
+
imu_embed_dim,
|
386 |
+
):
|
387 |
+
modality_heads = {}
|
388 |
+
|
389 |
+
modality_heads[ModalityType.VISION] = nn.Sequential(
|
390 |
+
nn.LayerNorm(normalized_shape=vision_embed_dim, eps=1e-6),
|
391 |
+
SelectElement(index=0),
|
392 |
+
nn.Linear(vision_embed_dim, out_embed_dim, bias=False),
|
393 |
+
)
|
394 |
+
|
395 |
+
modality_heads[ModalityType.TEXT] = SelectEOSAndProject(
|
396 |
+
proj=nn.Sequential(
|
397 |
+
nn.LayerNorm(normalized_shape=text_embed_dim, eps=1e-6),
|
398 |
+
nn.Linear(text_embed_dim, out_embed_dim, bias=False),
|
399 |
+
)
|
400 |
+
)
|
401 |
+
|
402 |
+
modality_heads[ModalityType.AUDIO] = nn.Sequential(
|
403 |
+
nn.LayerNorm(normalized_shape=audio_embed_dim, eps=1e-6),
|
404 |
+
SelectElement(index=0),
|
405 |
+
nn.Linear(audio_embed_dim, out_embed_dim, bias=False),
|
406 |
+
)
|
407 |
+
|
408 |
+
modality_heads[ModalityType.DEPTH] = nn.Sequential(
|
409 |
+
nn.LayerNorm(normalized_shape=depth_embed_dim, eps=1e-6),
|
410 |
+
SelectElement(index=0),
|
411 |
+
nn.Linear(depth_embed_dim, out_embed_dim, bias=False),
|
412 |
+
)
|
413 |
+
|
414 |
+
modality_heads[ModalityType.THERMAL] = nn.Sequential(
|
415 |
+
nn.LayerNorm(normalized_shape=thermal_embed_dim, eps=1e-6),
|
416 |
+
SelectElement(index=0),
|
417 |
+
nn.Linear(thermal_embed_dim, out_embed_dim, bias=False),
|
418 |
+
)
|
419 |
+
|
420 |
+
modality_heads[ModalityType.IMU] = nn.Sequential(
|
421 |
+
nn.LayerNorm(normalized_shape=imu_embed_dim, eps=1e-6),
|
422 |
+
SelectElement(index=0),
|
423 |
+
nn.Dropout(p=0.5),
|
424 |
+
nn.Linear(imu_embed_dim, out_embed_dim, bias=False),
|
425 |
+
)
|
426 |
+
|
427 |
+
return nn.ModuleDict(modality_heads)
|
428 |
+
|
429 |
+
def _create_modality_postprocessors(self, out_embed_dim):
|
430 |
+
modality_postprocessors = {}
|
431 |
+
|
432 |
+
modality_postprocessors[ModalityType.VISION] = Normalize(dim=-1)
|
433 |
+
modality_postprocessors[ModalityType.TEXT] = nn.Sequential(
|
434 |
+
Normalize(dim=-1), LearnableLogitScaling(learnable=True)
|
435 |
+
)
|
436 |
+
modality_postprocessors[ModalityType.AUDIO] = nn.Sequential(
|
437 |
+
Normalize(dim=-1),
|
438 |
+
LearnableLogitScaling(logit_scale_init=20.0, learnable=False),
|
439 |
+
)
|
440 |
+
modality_postprocessors[ModalityType.DEPTH] = nn.Sequential(
|
441 |
+
Normalize(dim=-1),
|
442 |
+
LearnableLogitScaling(logit_scale_init=5.0, learnable=False),
|
443 |
+
)
|
444 |
+
modality_postprocessors[ModalityType.THERMAL] = nn.Sequential(
|
445 |
+
Normalize(dim=-1),
|
446 |
+
LearnableLogitScaling(logit_scale_init=10.0, learnable=False),
|
447 |
+
)
|
448 |
+
modality_postprocessors[ModalityType.IMU] = nn.Sequential(
|
449 |
+
Normalize(dim=-1),
|
450 |
+
LearnableLogitScaling(logit_scale_init=5.0, learnable=False),
|
451 |
+
)
|
452 |
+
return nn.ModuleDict(modality_postprocessors)
|
453 |
+
|
454 |
+
def forward(self, inputs):
|
455 |
+
outputs = {}
|
456 |
+
for modality_key, modality_value in inputs.items():
|
457 |
+
reduce_list = (
|
458 |
+
modality_value.ndim >= 5
|
459 |
+
) # Audio and Video inputs consist of multiple clips
|
460 |
+
if reduce_list:
|
461 |
+
B, S = modality_value.shape[:2]
|
462 |
+
modality_value = modality_value.reshape(
|
463 |
+
B * S, *modality_value.shape[2:]
|
464 |
+
)
|
465 |
+
|
466 |
+
if modality_value is not None:
|
467 |
+
modality_value = self.modality_preprocessors[modality_key](
|
468 |
+
**{modality_key: modality_value}
|
469 |
+
)
|
470 |
+
trunk_inputs = modality_value["trunk"]
|
471 |
+
head_inputs = modality_value["head"]
|
472 |
+
modality_value = self.modality_trunks[modality_key](**trunk_inputs)
|
473 |
+
modality_value = self.modality_heads[modality_key](
|
474 |
+
modality_value, **head_inputs
|
475 |
+
)
|
476 |
+
if modality_key in [ModalityType.AUDIO]:
|
477 |
+
modality_value = self.modality_postprocessors[modality_key][0](
|
478 |
+
modality_value
|
479 |
+
)
|
480 |
+
else:
|
481 |
+
modality_value = self.modality_postprocessors[modality_key](
|
482 |
+
modality_value
|
483 |
+
)
|
484 |
+
|
485 |
+
if reduce_list:
|
486 |
+
modality_value = modality_value.reshape(B, S, -1)
|
487 |
+
modality_value = modality_value.mean(dim=1)
|
488 |
+
|
489 |
+
outputs[modality_key] = modality_value
|
490 |
+
|
491 |
+
return outputs
|
492 |
+
|
493 |
+
|
494 |
+
def imagebind_huge(pretrained=False, store_path=r'.checkpoints'):
|
495 |
+
model = ImageBindModel(
|
496 |
+
vision_embed_dim=1280,
|
497 |
+
vision_num_blocks=32,
|
498 |
+
vision_num_heads=16,
|
499 |
+
text_embed_dim=1024,
|
500 |
+
text_num_blocks=24,
|
501 |
+
text_num_heads=16,
|
502 |
+
out_embed_dim=1024,
|
503 |
+
audio_drop_path=0.1,
|
504 |
+
imu_drop_path=0.7,
|
505 |
+
)
|
506 |
+
|
507 |
+
if pretrained:
|
508 |
+
if not os.path.exists("{}/imagebind_huge.pth".format(store_path)):
|
509 |
+
print(
|
510 |
+
"Downloading imagebind weights to {}/imagebind_huge.pth ...".format(store_path)
|
511 |
+
)
|
512 |
+
os.makedirs(store_path, exist_ok=True)
|
513 |
+
torch.hub.download_url_to_file(
|
514 |
+
"https://dl.fbaipublicfiles.com/imagebind/imagebind_huge.pth",
|
515 |
+
"{}/imagebind_huge.pth".format(store_path),
|
516 |
+
progress=True,
|
517 |
+
)
|
518 |
+
|
519 |
+
model.load_state_dict(torch.load("{}/imagebind_huge.pth".format(store_path)))
|
520 |
+
|
521 |
+
return model, 1024
|
code/model/ImageBind/models/multimodal_preprocessors.py
ADDED
@@ -0,0 +1,687 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python3
|
2 |
+
# Portions Copyright (c) Meta Platforms, Inc. and affiliates.
|
3 |
+
# All rights reserved.
|
4 |
+
|
5 |
+
# This source code is licensed under the license found in the
|
6 |
+
# LICENSE file in the root directory of this source tree.
|
7 |
+
|
8 |
+
import gzip
|
9 |
+
import html
|
10 |
+
import io
|
11 |
+
import math
|
12 |
+
from functools import lru_cache
|
13 |
+
from typing import Callable, List, Optional
|
14 |
+
|
15 |
+
import ftfy
|
16 |
+
|
17 |
+
import numpy as np
|
18 |
+
import regex as re
|
19 |
+
import torch
|
20 |
+
import torch.nn as nn
|
21 |
+
from iopath.common.file_io import g_pathmgr
|
22 |
+
from timm.models.layers import trunc_normal_
|
23 |
+
|
24 |
+
from .helpers import cast_if_src_dtype, VerboseNNModule
|
25 |
+
|
26 |
+
|
27 |
+
def get_sinusoid_encoding_table(n_position, d_hid):
|
28 |
+
"""Sinusoid position encoding table"""
|
29 |
+
|
30 |
+
# TODO: make it with torch instead of numpy
|
31 |
+
def get_position_angle_vec(position):
|
32 |
+
return [
|
33 |
+
position / np.power(10000, 2 * (hid_j // 2) / d_hid)
|
34 |
+
for hid_j in range(d_hid)
|
35 |
+
]
|
36 |
+
|
37 |
+
sinusoid_table = np.array(
|
38 |
+
[get_position_angle_vec(pos_i) for pos_i in range(n_position)]
|
39 |
+
)
|
40 |
+
sinusoid_table[:, 0::2] = np.sin(sinusoid_table[:, 0::2]) # dim 2i
|
41 |
+
sinusoid_table[:, 1::2] = np.cos(sinusoid_table[:, 1::2]) # dim 2i+1
|
42 |
+
|
43 |
+
return torch.FloatTensor(sinusoid_table).unsqueeze(0)
|
44 |
+
|
45 |
+
|
46 |
+
def interpolate_pos_encoding_2d(target_spatial_size, pos_embed):
|
47 |
+
N = pos_embed.shape[1]
|
48 |
+
if N == target_spatial_size:
|
49 |
+
return pos_embed
|
50 |
+
dim = pos_embed.shape[-1]
|
51 |
+
# nn.functional.interpolate doesn't work with bfloat16 so we cast to float32
|
52 |
+
pos_embed, updated = cast_if_src_dtype(pos_embed, torch.bfloat16, torch.float32)
|
53 |
+
pos_embed = nn.functional.interpolate(
|
54 |
+
pos_embed.reshape(1, int(math.sqrt(N)), int(math.sqrt(N)), dim).permute(
|
55 |
+
0, 3, 1, 2
|
56 |
+
),
|
57 |
+
scale_factor=math.sqrt(target_spatial_size / N),
|
58 |
+
mode="bicubic",
|
59 |
+
)
|
60 |
+
if updated:
|
61 |
+
pos_embed, _ = cast_if_src_dtype(pos_embed, torch.float32, torch.bfloat16)
|
62 |
+
pos_embed = pos_embed.permute(0, 2, 3, 1).view(1, -1, dim)
|
63 |
+
return pos_embed
|
64 |
+
|
65 |
+
|
66 |
+
def interpolate_pos_encoding(
|
67 |
+
npatch_per_img,
|
68 |
+
pos_embed,
|
69 |
+
patches_layout,
|
70 |
+
input_shape=None,
|
71 |
+
first_patch_idx=1,
|
72 |
+
):
|
73 |
+
assert first_patch_idx == 0 or first_patch_idx == 1, "there is 1 CLS token or none"
|
74 |
+
N = pos_embed.shape[1] - first_patch_idx # since it's 1 if cls_token exists
|
75 |
+
if npatch_per_img == N:
|
76 |
+
return pos_embed
|
77 |
+
|
78 |
+
assert (
|
79 |
+
patches_layout[-1] == patches_layout[-2]
|
80 |
+
), "Interpolation of pos embed not supported for non-square layouts"
|
81 |
+
|
82 |
+
class_emb = pos_embed[:, :first_patch_idx]
|
83 |
+
pos_embed = pos_embed[:, first_patch_idx:]
|
84 |
+
|
85 |
+
if input_shape is None or patches_layout[0] == 1:
|
86 |
+
# simple 2D pos embedding, no temporal component
|
87 |
+
pos_embed = interpolate_pos_encoding_2d(npatch_per_img, pos_embed)
|
88 |
+
elif patches_layout[0] > 1:
|
89 |
+
# pos embed has a temporal component
|
90 |
+
assert len(input_shape) == 4, "temporal interpolation not supported"
|
91 |
+
# we only support 2D interpolation in this case
|
92 |
+
num_frames = patches_layout[0]
|
93 |
+
num_spatial_tokens = patches_layout[1] * patches_layout[2]
|
94 |
+
pos_embed = pos_embed.view(1, num_frames, num_spatial_tokens, -1)
|
95 |
+
# interpolate embedding for zeroth frame
|
96 |
+
pos_embed = interpolate_pos_encoding_2d(
|
97 |
+
npatch_per_img, pos_embed[0, 0, ...].unsqueeze(0)
|
98 |
+
)
|
99 |
+
else:
|
100 |
+
raise ValueError("This type of interpolation isn't implemented")
|
101 |
+
|
102 |
+
return torch.cat((class_emb, pos_embed), dim=1)
|
103 |
+
|
104 |
+
|
105 |
+
def _get_pos_embedding(
|
106 |
+
npatch_per_img,
|
107 |
+
pos_embed,
|
108 |
+
patches_layout,
|
109 |
+
input_shape,
|
110 |
+
first_patch_idx=1,
|
111 |
+
):
|
112 |
+
pos_embed = interpolate_pos_encoding(
|
113 |
+
npatch_per_img,
|
114 |
+
pos_embed,
|
115 |
+
patches_layout,
|
116 |
+
input_shape=input_shape,
|
117 |
+
first_patch_idx=first_patch_idx,
|
118 |
+
)
|
119 |
+
return pos_embed
|
120 |
+
|
121 |
+
|
122 |
+
class PatchEmbedGeneric(nn.Module):
|
123 |
+
"""
|
124 |
+
PatchEmbed from Hydra
|
125 |
+
"""
|
126 |
+
|
127 |
+
def __init__(self, proj_stem, norm_layer: Optional[nn.Module] = None):
|
128 |
+
super().__init__()
|
129 |
+
|
130 |
+
if len(proj_stem) > 1:
|
131 |
+
self.proj = nn.Sequential(*proj_stem)
|
132 |
+
else:
|
133 |
+
# Special case to be able to load pre-trained models that were
|
134 |
+
# trained with a standard stem
|
135 |
+
self.proj = proj_stem[0]
|
136 |
+
self.norm_layer = norm_layer
|
137 |
+
|
138 |
+
def get_patch_layout(self, img_size):
|
139 |
+
with torch.no_grad():
|
140 |
+
dummy_img = torch.zeros(
|
141 |
+
[
|
142 |
+
1,
|
143 |
+
]
|
144 |
+
+ img_size
|
145 |
+
)
|
146 |
+
dummy_out = self.proj(dummy_img)
|
147 |
+
embed_dim = dummy_out.shape[1]
|
148 |
+
patches_layout = tuple(dummy_out.shape[2:])
|
149 |
+
num_patches = np.prod(patches_layout)
|
150 |
+
return patches_layout, num_patches, embed_dim
|
151 |
+
|
152 |
+
def forward(self, x):
|
153 |
+
x = self.proj(x)
|
154 |
+
# B C (T_I_V_A.txt) H W -> B (T_I_V_A.txt)HW C
|
155 |
+
x = x.flatten(2).transpose(1, 2)
|
156 |
+
if self.norm_layer is not None:
|
157 |
+
x = self.norm_layer(x)
|
158 |
+
return x
|
159 |
+
|
160 |
+
|
161 |
+
class SpatioTemporalPosEmbeddingHelper(VerboseNNModule):
|
162 |
+
def __init__(
|
163 |
+
self,
|
164 |
+
patches_layout: List,
|
165 |
+
num_patches: int,
|
166 |
+
num_cls_tokens: int,
|
167 |
+
embed_dim: int,
|
168 |
+
learnable: bool,
|
169 |
+
) -> None:
|
170 |
+
super().__init__()
|
171 |
+
self.num_cls_tokens = num_cls_tokens
|
172 |
+
self.patches_layout = patches_layout
|
173 |
+
self.num_patches = num_patches
|
174 |
+
self.num_tokens = num_cls_tokens + num_patches
|
175 |
+
self.learnable = learnable
|
176 |
+
if self.learnable:
|
177 |
+
self.pos_embed = nn.Parameter(torch.zeros(1, self.num_tokens, embed_dim))
|
178 |
+
trunc_normal_(self.pos_embed, std=0.02)
|
179 |
+
else:
|
180 |
+
self.register_buffer(
|
181 |
+
"pos_embed", get_sinusoid_encoding_table(self.num_tokens, embed_dim)
|
182 |
+
)
|
183 |
+
|
184 |
+
def get_pos_embedding(self, vision_input, all_vision_tokens):
|
185 |
+
input_shape = vision_input.shape
|
186 |
+
pos_embed = _get_pos_embedding(
|
187 |
+
all_vision_tokens.size(1) - self.num_cls_tokens,
|
188 |
+
pos_embed=self.pos_embed,
|
189 |
+
patches_layout=self.patches_layout,
|
190 |
+
input_shape=input_shape,
|
191 |
+
first_patch_idx=self.num_cls_tokens,
|
192 |
+
)
|
193 |
+
return pos_embed
|
194 |
+
|
195 |
+
|
196 |
+
class RGBDTPreprocessor(VerboseNNModule):
|
197 |
+
def __init__(
|
198 |
+
self,
|
199 |
+
rgbt_stem: PatchEmbedGeneric,
|
200 |
+
depth_stem: PatchEmbedGeneric,
|
201 |
+
img_size: List = (3, 224, 224),
|
202 |
+
num_cls_tokens: int = 1,
|
203 |
+
pos_embed_fn: Callable = None,
|
204 |
+
use_type_embed: bool = False,
|
205 |
+
init_param_style: str = "openclip",
|
206 |
+
) -> None:
|
207 |
+
super().__init__()
|
208 |
+
stem = rgbt_stem if rgbt_stem is not None else depth_stem
|
209 |
+
(
|
210 |
+
self.patches_layout,
|
211 |
+
self.num_patches,
|
212 |
+
self.embed_dim,
|
213 |
+
) = stem.get_patch_layout(img_size)
|
214 |
+
self.rgbt_stem = rgbt_stem
|
215 |
+
self.depth_stem = depth_stem
|
216 |
+
self.use_pos_embed = pos_embed_fn is not None
|
217 |
+
self.use_type_embed = use_type_embed
|
218 |
+
self.num_cls_tokens = num_cls_tokens
|
219 |
+
|
220 |
+
if self.use_pos_embed:
|
221 |
+
self.pos_embedding_helper = pos_embed_fn(
|
222 |
+
patches_layout=self.patches_layout,
|
223 |
+
num_cls_tokens=num_cls_tokens,
|
224 |
+
num_patches=self.num_patches,
|
225 |
+
embed_dim=self.embed_dim,
|
226 |
+
)
|
227 |
+
if self.num_cls_tokens > 0:
|
228 |
+
self.cls_token = nn.Parameter(
|
229 |
+
torch.zeros(1, self.num_cls_tokens, self.embed_dim)
|
230 |
+
)
|
231 |
+
if self.use_type_embed:
|
232 |
+
self.type_embed = nn.Parameter(torch.zeros(1, 1, self.embed_dim))
|
233 |
+
|
234 |
+
self.init_parameters(init_param_style)
|
235 |
+
|
236 |
+
@torch.no_grad()
|
237 |
+
def init_parameters(self, init_param_style):
|
238 |
+
if init_param_style == "openclip":
|
239 |
+
# OpenCLIP style initialization
|
240 |
+
scale = self.embed_dim**-0.5
|
241 |
+
if self.use_pos_embed:
|
242 |
+
nn.init.normal_(self.pos_embedding_helper.pos_embed)
|
243 |
+
self.pos_embedding_helper.pos_embed *= scale
|
244 |
+
|
245 |
+
if self.num_cls_tokens > 0:
|
246 |
+
nn.init.normal_(self.cls_token)
|
247 |
+
self.cls_token *= scale
|
248 |
+
elif init_param_style == "vit":
|
249 |
+
self.cls_token.data.fill_(0)
|
250 |
+
else:
|
251 |
+
raise ValueError(f"Unknown init {init_param_style}")
|
252 |
+
|
253 |
+
if self.use_type_embed:
|
254 |
+
nn.init.normal_(self.type_embed)
|
255 |
+
|
256 |
+
def tokenize_input_and_cls_pos(self, input, stem, mask):
|
257 |
+
# tokens is of shape B x L x D
|
258 |
+
tokens = stem(input)
|
259 |
+
assert tokens.ndim == 3
|
260 |
+
assert tokens.shape[2] == self.embed_dim
|
261 |
+
B = tokens.shape[0]
|
262 |
+
if self.num_cls_tokens > 0:
|
263 |
+
class_tokens = self.cls_token.expand(
|
264 |
+
B, -1, -1
|
265 |
+
) # stole class_tokens impl from Phil Wang, thanks
|
266 |
+
tokens = torch.cat((class_tokens, tokens), dim=1)
|
267 |
+
if self.use_pos_embed:
|
268 |
+
pos_embed = self.pos_embedding_helper.get_pos_embedding(input, tokens)
|
269 |
+
tokens = tokens + pos_embed
|
270 |
+
if self.use_type_embed:
|
271 |
+
tokens = tokens + self.type_embed.expand(B, -1, -1)
|
272 |
+
return tokens
|
273 |
+
|
274 |
+
def forward(self, vision=None, depth=None, patch_mask=None):
|
275 |
+
if patch_mask is not None:
|
276 |
+
raise NotImplementedError()
|
277 |
+
|
278 |
+
if vision is not None:
|
279 |
+
vision_tokens = self.tokenize_input_and_cls_pos(
|
280 |
+
vision, self.rgbt_stem, patch_mask
|
281 |
+
)
|
282 |
+
|
283 |
+
if depth is not None:
|
284 |
+
depth_tokens = self.tokenize_input_and_cls_pos(
|
285 |
+
depth, self.depth_stem, patch_mask
|
286 |
+
)
|
287 |
+
|
288 |
+
# aggregate tokens
|
289 |
+
if vision is not None and depth is not None:
|
290 |
+
final_tokens = vision_tokens + depth_tokens
|
291 |
+
else:
|
292 |
+
final_tokens = vision_tokens if vision is not None else depth_tokens
|
293 |
+
return_dict = {
|
294 |
+
"trunk": {
|
295 |
+
"tokens": final_tokens,
|
296 |
+
},
|
297 |
+
"head": {},
|
298 |
+
}
|
299 |
+
return return_dict
|
300 |
+
|
301 |
+
|
302 |
+
class AudioPreprocessor(RGBDTPreprocessor):
|
303 |
+
def __init__(self, audio_stem: PatchEmbedGeneric, **kwargs) -> None:
|
304 |
+
super().__init__(rgbt_stem=audio_stem, depth_stem=None, **kwargs)
|
305 |
+
|
306 |
+
def forward(self, audio=None):
|
307 |
+
return super().forward(vision=audio)
|
308 |
+
|
309 |
+
|
310 |
+
class ThermalPreprocessor(RGBDTPreprocessor):
|
311 |
+
def __init__(self, thermal_stem: PatchEmbedGeneric, **kwargs) -> None:
|
312 |
+
super().__init__(rgbt_stem=thermal_stem, depth_stem=None, **kwargs)
|
313 |
+
|
314 |
+
def forward(self, thermal=None):
|
315 |
+
return super().forward(vision=thermal)
|
316 |
+
|
317 |
+
|
318 |
+
def build_causal_attention_mask(context_length):
|
319 |
+
# lazily create causal attention mask, with full attention between the vision tokens
|
320 |
+
# pytorch uses additive attention mask; fill with -inf
|
321 |
+
mask = torch.empty(context_length, context_length, requires_grad=False)
|
322 |
+
mask.fill_(float("-inf"))
|
323 |
+
mask.triu_(1) # zero out the lower diagonal
|
324 |
+
return mask
|
325 |
+
|
326 |
+
|
327 |
+
class TextPreprocessor(VerboseNNModule):
|
328 |
+
def __init__(
|
329 |
+
self,
|
330 |
+
vocab_size: int,
|
331 |
+
context_length: int,
|
332 |
+
embed_dim: int,
|
333 |
+
causal_masking: bool,
|
334 |
+
supply_seq_len_to_head: bool = True,
|
335 |
+
num_cls_tokens: int = 0,
|
336 |
+
init_param_style: str = "openclip",
|
337 |
+
) -> None:
|
338 |
+
super().__init__()
|
339 |
+
self.vocab_size = vocab_size
|
340 |
+
self.context_length = context_length
|
341 |
+
self.token_embedding = nn.Embedding(vocab_size, embed_dim)
|
342 |
+
self.pos_embed = nn.Parameter(
|
343 |
+
torch.empty(1, self.context_length + num_cls_tokens, embed_dim)
|
344 |
+
)
|
345 |
+
self.causal_masking = causal_masking
|
346 |
+
if self.causal_masking:
|
347 |
+
mask = build_causal_attention_mask(self.context_length)
|
348 |
+
# register the mask as a buffer so it can be moved to the right device
|
349 |
+
self.register_buffer("mask", mask)
|
350 |
+
|
351 |
+
self.supply_seq_len_to_head = supply_seq_len_to_head
|
352 |
+
self.num_cls_tokens = num_cls_tokens
|
353 |
+
self.embed_dim = embed_dim
|
354 |
+
if num_cls_tokens > 0:
|
355 |
+
assert self.causal_masking is False, "Masking + CLS token isn't implemented"
|
356 |
+
self.cls_token = nn.Parameter(
|
357 |
+
torch.zeros(1, self.num_cls_tokens, embed_dim)
|
358 |
+
)
|
359 |
+
|
360 |
+
self.init_parameters(init_param_style)
|
361 |
+
|
362 |
+
@torch.no_grad()
|
363 |
+
def init_parameters(self, init_param_style="openclip"):
|
364 |
+
# OpenCLIP style initialization
|
365 |
+
nn.init.normal_(self.token_embedding.weight, std=0.02)
|
366 |
+
nn.init.normal_(self.pos_embed, std=0.01)
|
367 |
+
|
368 |
+
if init_param_style == "openclip":
|
369 |
+
# OpenCLIP style initialization
|
370 |
+
scale = self.embed_dim**-0.5
|
371 |
+
if self.num_cls_tokens > 0:
|
372 |
+
nn.init.normal_(self.cls_token)
|
373 |
+
self.cls_token *= scale
|
374 |
+
elif init_param_style == "vit":
|
375 |
+
self.cls_token.data.fill_(0)
|
376 |
+
else:
|
377 |
+
raise ValueError(f"Unknown init {init_param_style}")
|
378 |
+
|
379 |
+
def forward(self, text):
|
380 |
+
# text tokens are of shape B x L x D
|
381 |
+
text_tokens = self.token_embedding(text)
|
382 |
+
# concat CLS tokens if any
|
383 |
+
if self.num_cls_tokens > 0:
|
384 |
+
B = text_tokens.shape[0]
|
385 |
+
class_tokens = self.cls_token.expand(
|
386 |
+
B, -1, -1
|
387 |
+
) # stole class_tokens impl from Phil Wang, thanks
|
388 |
+
text_tokens = torch.cat((class_tokens, text_tokens), dim=1)
|
389 |
+
text_tokens = text_tokens + self.pos_embed
|
390 |
+
return_dict = {
|
391 |
+
"trunk": {
|
392 |
+
"tokens": text_tokens,
|
393 |
+
},
|
394 |
+
"head": {},
|
395 |
+
}
|
396 |
+
# Compute sequence length after adding CLS tokens
|
397 |
+
if self.supply_seq_len_to_head:
|
398 |
+
text_lengths = text.argmax(dim=-1)
|
399 |
+
return_dict["head"] = {
|
400 |
+
"seq_len": text_lengths,
|
401 |
+
}
|
402 |
+
if self.causal_masking:
|
403 |
+
return_dict["trunk"].update({"attn_mask": self.mask})
|
404 |
+
return return_dict
|
405 |
+
|
406 |
+
|
407 |
+
class Im2Video(nn.Module):
|
408 |
+
"""Convert an image into a trivial video."""
|
409 |
+
|
410 |
+
def __init__(self, time_dim=2):
|
411 |
+
super().__init__()
|
412 |
+
self.time_dim = time_dim
|
413 |
+
|
414 |
+
def forward(self, x):
|
415 |
+
if x.ndim == 4:
|
416 |
+
# B, C, H, W -> B, C, T_I_V_A.txt, H, W
|
417 |
+
return x.unsqueeze(self.time_dim)
|
418 |
+
elif x.ndim == 5:
|
419 |
+
return x
|
420 |
+
else:
|
421 |
+
raise ValueError(f"Dimension incorrect {x.shape}")
|
422 |
+
|
423 |
+
|
424 |
+
class PadIm2Video(Im2Video):
|
425 |
+
def __init__(self, ntimes, pad_type, time_dim=2):
|
426 |
+
super().__init__(time_dim=time_dim)
|
427 |
+
assert ntimes > 0
|
428 |
+
assert pad_type in ["zero", "repeat"]
|
429 |
+
self.ntimes = ntimes
|
430 |
+
self.pad_type = pad_type
|
431 |
+
|
432 |
+
def forward(self, x):
|
433 |
+
x = super().forward(x)
|
434 |
+
if x.shape[self.time_dim] == 1:
|
435 |
+
if self.pad_type == "repeat":
|
436 |
+
new_shape = [1] * len(x.shape)
|
437 |
+
new_shape[self.time_dim] = self.ntimes
|
438 |
+
x = x.repeat(new_shape)
|
439 |
+
elif self.pad_type == "zero":
|
440 |
+
padarg = [0, 0] * len(x.shape)
|
441 |
+
padarg[2 * self.time_dim + 1] = self.ntimes - x.shape[self.time_dim]
|
442 |
+
x = nn.functional.pad(x, padarg)
|
443 |
+
return x
|
444 |
+
|
445 |
+
|
446 |
+
# Modified from github.com/openai/CLIP
|
447 |
+
@lru_cache()
|
448 |
+
def bytes_to_unicode():
|
449 |
+
"""
|
450 |
+
Returns list of utf-8 byte and a corresponding list of unicode strings.
|
451 |
+
The reversible bpe codes work on unicode strings.
|
452 |
+
This means you need a large # of unicode characters in your vocab if you want to avoid UNKs.
|
453 |
+
When you're at something like a 10B token dataset you end up needing around 5K for decent coverage.
|
454 |
+
This is a signficant percentage of your normal, say, 32K bpe vocab.
|
455 |
+
To avoid that, we want lookup tables between utf-8 bytes and unicode strings.
|
456 |
+
And avoids mapping to whitespace/control characters the bpe code barfs on.
|
457 |
+
"""
|
458 |
+
bs = (
|
459 |
+
list(range(ord("!"), ord("~") + 1))
|
460 |
+
+ list(range(ord("¡"), ord("¬") + 1))
|
461 |
+
+ list(range(ord("®"), ord("ÿ") + 1))
|
462 |
+
)
|
463 |
+
cs = bs[:]
|
464 |
+
n = 0
|
465 |
+
for b in range(2**8):
|
466 |
+
if b not in bs:
|
467 |
+
bs.append(b)
|
468 |
+
cs.append(2**8 + n)
|
469 |
+
n += 1
|
470 |
+
cs = [chr(n) for n in cs]
|
471 |
+
return dict(zip(bs, cs))
|
472 |
+
|
473 |
+
|
474 |
+
def get_pairs(word):
|
475 |
+
"""Return set of symbol pairs in a word.
|
476 |
+
Word is represented as tuple of symbols (symbols being variable-length strings).
|
477 |
+
"""
|
478 |
+
pairs = set()
|
479 |
+
prev_char = word[0]
|
480 |
+
for char in word[1:]:
|
481 |
+
pairs.add((prev_char, char))
|
482 |
+
prev_char = char
|
483 |
+
return pairs
|
484 |
+
|
485 |
+
|
486 |
+
def basic_clean(text):
|
487 |
+
text = ftfy.fix_text(text)
|
488 |
+
text = html.unescape(html.unescape(text))
|
489 |
+
return text.strip()
|
490 |
+
|
491 |
+
|
492 |
+
def whitespace_clean(text):
|
493 |
+
text = re.sub(r"\s+", " ", text)
|
494 |
+
text = text.strip()
|
495 |
+
return text
|
496 |
+
|
497 |
+
|
498 |
+
class SimpleTokenizer(object):
|
499 |
+
def __init__(self, bpe_path: str, context_length=77):
|
500 |
+
self.byte_encoder = bytes_to_unicode()
|
501 |
+
self.byte_decoder = {v: k for k, v in self.byte_encoder.items()}
|
502 |
+
|
503 |
+
with g_pathmgr.open(bpe_path, "rb") as fh:
|
504 |
+
bpe_bytes = io.BytesIO(fh.read())
|
505 |
+
merges = gzip.open(bpe_bytes).read().decode("utf-8").split("\n")
|
506 |
+
merges = merges[1 : 49152 - 256 - 2 + 1]
|
507 |
+
merges = [tuple(merge.split()) for merge in merges]
|
508 |
+
vocab = list(bytes_to_unicode().values())
|
509 |
+
vocab = vocab + [v + "</w>" for v in vocab]
|
510 |
+
for merge in merges:
|
511 |
+
vocab.append("".join(merge))
|
512 |
+
vocab.extend(["<|startoftext|>", "<|endoftext|>"])
|
513 |
+
self.encoder = dict(zip(vocab, range(len(vocab))))
|
514 |
+
self.decoder = {v: k for k, v in self.encoder.items()}
|
515 |
+
self.bpe_ranks = dict(zip(merges, range(len(merges))))
|
516 |
+
self.cache = {
|
517 |
+
"<|startoftext|>": "<|startoftext|>",
|
518 |
+
"<|endoftext|>": "<|endoftext|>",
|
519 |
+
}
|
520 |
+
self.pat = re.compile(
|
521 |
+
r"""<\|startoftext\|>|<\|endoftext\|>|'s|'t|'re|'ve|'m|'ll|'d|[\p{L}]+|[\p{N}]|[^\s\p{L}\p{N}]+""",
|
522 |
+
re.IGNORECASE,
|
523 |
+
)
|
524 |
+
self.context_length = context_length
|
525 |
+
|
526 |
+
def bpe(self, token):
|
527 |
+
if token in self.cache:
|
528 |
+
return self.cache[token]
|
529 |
+
word = tuple(token[:-1]) + (token[-1] + "</w>",)
|
530 |
+
pairs = get_pairs(word)
|
531 |
+
|
532 |
+
if not pairs:
|
533 |
+
return token + "</w>"
|
534 |
+
|
535 |
+
while True:
|
536 |
+
bigram = min(pairs, key=lambda pair: self.bpe_ranks.get(pair, float("inf")))
|
537 |
+
if bigram not in self.bpe_ranks:
|
538 |
+
break
|
539 |
+
first, second = bigram
|
540 |
+
new_word = []
|
541 |
+
i = 0
|
542 |
+
while i < len(word):
|
543 |
+
try:
|
544 |
+
j = word.index(first, i)
|
545 |
+
new_word.extend(word[i:j])
|
546 |
+
i = j
|
547 |
+
except:
|
548 |
+
new_word.extend(word[i:])
|
549 |
+
break
|
550 |
+
|
551 |
+
if word[i] == first and i < len(word) - 1 and word[i + 1] == second:
|
552 |
+
new_word.append(first + second)
|
553 |
+
i += 2
|
554 |
+
else:
|
555 |
+
new_word.append(word[i])
|
556 |
+
i += 1
|
557 |
+
new_word = tuple(new_word)
|
558 |
+
word = new_word
|
559 |
+
if len(word) == 1:
|
560 |
+
break
|
561 |
+
else:
|
562 |
+
pairs = get_pairs(word)
|
563 |
+
word = " ".join(word)
|
564 |
+
self.cache[token] = word
|
565 |
+
return word
|
566 |
+
|
567 |
+
def encode(self, text):
|
568 |
+
bpe_tokens = []
|
569 |
+
text = whitespace_clean(basic_clean(text)).lower()
|
570 |
+
for token in re.findall(self.pat, text):
|
571 |
+
token = "".join(self.byte_encoder[b] for b in token.encode("utf-8"))
|
572 |
+
bpe_tokens.extend(
|
573 |
+
self.encoder[bpe_token] for bpe_token in self.bpe(token).split(" ")
|
574 |
+
)
|
575 |
+
return bpe_tokens
|
576 |
+
|
577 |
+
def decode(self, tokens):
|
578 |
+
text = "".join([self.decoder[token] for token in tokens])
|
579 |
+
text = (
|
580 |
+
bytearray([self.byte_decoder[c] for c in text])
|
581 |
+
.decode("utf-8", errors="replace")
|
582 |
+
.replace("</w>", " ")
|
583 |
+
)
|
584 |
+
return text
|
585 |
+
|
586 |
+
def __call__(self, texts, context_length=None):
|
587 |
+
if not context_length:
|
588 |
+
context_length = self.context_length
|
589 |
+
|
590 |
+
if isinstance(texts, str):
|
591 |
+
texts = [texts]
|
592 |
+
|
593 |
+
sot_token = self.encoder["<|startoftext|>"]
|
594 |
+
eot_token = self.encoder["<|endoftext|>"]
|
595 |
+
all_tokens = [[sot_token] + self.encode(text) + [eot_token] for text in texts]
|
596 |
+
result = torch.zeros(len(all_tokens), context_length, dtype=torch.long)
|
597 |
+
|
598 |
+
for i, tokens in enumerate(all_tokens):
|
599 |
+
tokens = tokens[:context_length]
|
600 |
+
result[i, : len(tokens)] = torch.tensor(tokens)
|
601 |
+
|
602 |
+
if len(result) == 1:
|
603 |
+
return result[0]
|
604 |
+
return result
|
605 |
+
|
606 |
+
|
607 |
+
class IMUPreprocessor(VerboseNNModule):
|
608 |
+
def __init__(
|
609 |
+
self,
|
610 |
+
kernel_size: int,
|
611 |
+
imu_stem: PatchEmbedGeneric,
|
612 |
+
embed_dim: int,
|
613 |
+
img_size: List = (6, 2000),
|
614 |
+
num_cls_tokens: int = 1,
|
615 |
+
pos_embed_fn: Callable = None,
|
616 |
+
init_param_style: str = "openclip",
|
617 |
+
) -> None:
|
618 |
+
super().__init__()
|
619 |
+
stem = imu_stem
|
620 |
+
self.imu_stem = imu_stem
|
621 |
+
self.embed_dim = embed_dim
|
622 |
+
self.use_pos_embed = pos_embed_fn is not None
|
623 |
+
self.num_cls_tokens = num_cls_tokens
|
624 |
+
self.kernel_size = kernel_size
|
625 |
+
self.pos_embed = nn.Parameter(
|
626 |
+
torch.empty(1, (img_size[1] // kernel_size) + num_cls_tokens, embed_dim)
|
627 |
+
)
|
628 |
+
|
629 |
+
if self.num_cls_tokens > 0:
|
630 |
+
self.cls_token = nn.Parameter(
|
631 |
+
torch.zeros(1, self.num_cls_tokens, self.embed_dim)
|
632 |
+
)
|
633 |
+
|
634 |
+
self.init_parameters(init_param_style)
|
635 |
+
|
636 |
+
@torch.no_grad()
|
637 |
+
def init_parameters(self, init_param_style):
|
638 |
+
nn.init.normal_(self.pos_embed, std=0.01)
|
639 |
+
|
640 |
+
if init_param_style == "openclip":
|
641 |
+
# OpenCLIP style initialization
|
642 |
+
scale = self.embed_dim**-0.5
|
643 |
+
|
644 |
+
if self.num_cls_tokens > 0:
|
645 |
+
nn.init.normal_(self.cls_token)
|
646 |
+
self.cls_token *= scale
|
647 |
+
elif init_param_style == "vit":
|
648 |
+
self.cls_token.data.fill_(0)
|
649 |
+
else:
|
650 |
+
raise ValueError(f"Unknown init {init_param_style}")
|
651 |
+
|
652 |
+
def tokenize_input_and_cls_pos(self, input, stem):
|
653 |
+
# tokens is of shape B x L x D
|
654 |
+
tokens = stem.norm_layer(stem.proj(input))
|
655 |
+
assert tokens.ndim == 3
|
656 |
+
assert tokens.shape[2] == self.embed_dim
|
657 |
+
B = tokens.shape[0]
|
658 |
+
if self.num_cls_tokens > 0:
|
659 |
+
class_tokens = self.cls_token.expand(
|
660 |
+
B, -1, -1
|
661 |
+
) # stole class_tokens impl from Phil Wang, thanks
|
662 |
+
tokens = torch.cat((class_tokens, tokens), dim=1)
|
663 |
+
if self.use_pos_embed:
|
664 |
+
tokens = tokens + self.pos_embed
|
665 |
+
return tokens
|
666 |
+
|
667 |
+
def forward(self, imu):
|
668 |
+
# Patchify
|
669 |
+
imu = imu.unfold(
|
670 |
+
-1,
|
671 |
+
self.kernel_size,
|
672 |
+
self.kernel_size,
|
673 |
+
).permute(0, 2, 1, 3)
|
674 |
+
imu = imu.reshape(imu.size(0), imu.size(1), -1)
|
675 |
+
|
676 |
+
imu_tokens = self.tokenize_input_and_cls_pos(
|
677 |
+
imu,
|
678 |
+
self.imu_stem,
|
679 |
+
)
|
680 |
+
|
681 |
+
return_dict = {
|
682 |
+
"trunk": {
|
683 |
+
"tokens": imu_tokens,
|
684 |
+
},
|
685 |
+
"head": {},
|
686 |
+
}
|
687 |
+
return return_dict
|
code/model/ImageBind/models/transformer.py
ADDED
@@ -0,0 +1,284 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python3
|
2 |
+
# Portions Copyright (c) Meta Platforms, Inc. and affiliates.
|
3 |
+
# All rights reserved.
|
4 |
+
|
5 |
+
# This source code is licensed under the license found in the
|
6 |
+
# LICENSE file in the root directory of this source tree.
|
7 |
+
|
8 |
+
# Code modified from
|
9 |
+
# https://github.com/rwightman/pytorch-image-models/blob/master/timm/models/vision_transformer.py ;
|
10 |
+
# https://github.com/facebookresearch/deit/blob/main/models.py
|
11 |
+
# and https://github.com/facebookresearch/vissl/blob/main/vissl/models/trunks/vision_transformer.py
|
12 |
+
|
13 |
+
|
14 |
+
import copy
|
15 |
+
import fnmatch
|
16 |
+
import logging
|
17 |
+
from functools import partial
|
18 |
+
from typing import Callable, List
|
19 |
+
|
20 |
+
import torch
|
21 |
+
import torch.nn as nn
|
22 |
+
import torch.utils.checkpoint as checkpoint
|
23 |
+
|
24 |
+
from timm.models.layers import DropPath, trunc_normal_
|
25 |
+
|
26 |
+
|
27 |
+
class Attention(nn.Module):
|
28 |
+
def __init__(
|
29 |
+
self,
|
30 |
+
dim,
|
31 |
+
num_heads=8,
|
32 |
+
qkv_bias=False,
|
33 |
+
qk_scale=None,
|
34 |
+
attn_drop=0.0,
|
35 |
+
proj_drop=0.0,
|
36 |
+
):
|
37 |
+
super().__init__()
|
38 |
+
self.num_heads = num_heads
|
39 |
+
head_dim = dim // num_heads
|
40 |
+
# NOTE scale factor was wrong in my original version,
|
41 |
+
# can set manually to be compat with prev weights
|
42 |
+
self.scale = qk_scale or head_dim**-0.5
|
43 |
+
|
44 |
+
self.qkv = nn.Linear(dim, dim * 3, bias=qkv_bias)
|
45 |
+
self.attn_drop = nn.Dropout(attn_drop)
|
46 |
+
self.proj = nn.Linear(dim, dim)
|
47 |
+
self.proj_drop = nn.Dropout(proj_drop)
|
48 |
+
|
49 |
+
def forward(self, x):
|
50 |
+
B, N, C = x.shape
|
51 |
+
qkv = (
|
52 |
+
self.qkv(x)
|
53 |
+
.reshape(B, N, 3, self.num_heads, C // self.num_heads)
|
54 |
+
.permute(2, 0, 3, 1, 4)
|
55 |
+
)
|
56 |
+
q, k, v = (
|
57 |
+
qkv[0],
|
58 |
+
qkv[1],
|
59 |
+
qkv[2],
|
60 |
+
) # make torchscript happy (cannot use tensor as tuple)
|
61 |
+
|
62 |
+
attn = (q @ k.transpose(-2, -1)) * self.scale
|
63 |
+
attn = attn.softmax(dim=-1)
|
64 |
+
attn = self.attn_drop(attn)
|
65 |
+
|
66 |
+
x = (attn @ v).transpose(1, 2).reshape(B, N, C)
|
67 |
+
x = self.proj(x)
|
68 |
+
x = self.proj_drop(x)
|
69 |
+
return x
|
70 |
+
|
71 |
+
|
72 |
+
class Mlp(nn.Module):
|
73 |
+
def __init__(
|
74 |
+
self,
|
75 |
+
in_features,
|
76 |
+
hidden_features=None,
|
77 |
+
out_features=None,
|
78 |
+
act_layer=nn.GELU,
|
79 |
+
drop=0.0,
|
80 |
+
):
|
81 |
+
super().__init__()
|
82 |
+
out_features = out_features or in_features
|
83 |
+
hidden_features = hidden_features or in_features
|
84 |
+
self.fc1 = nn.Linear(in_features, hidden_features)
|
85 |
+
self.act = act_layer()
|
86 |
+
self.fc2 = nn.Linear(hidden_features, out_features)
|
87 |
+
self.drop = nn.Dropout(drop)
|
88 |
+
|
89 |
+
def forward(self, x):
|
90 |
+
x = self.fc1(x)
|
91 |
+
x = self.act(x)
|
92 |
+
x = self.drop(x)
|
93 |
+
x = self.fc2(x)
|
94 |
+
x = self.drop(x)
|
95 |
+
return x
|
96 |
+
|
97 |
+
|
98 |
+
class MultiheadAttention(nn.MultiheadAttention):
|
99 |
+
def forward(self, x: torch.Tensor, attn_mask: torch.Tensor):
|
100 |
+
return super().forward(x, x, x, need_weights=False, attn_mask=attn_mask)[0]
|
101 |
+
|
102 |
+
|
103 |
+
class ViTAttention(Attention):
|
104 |
+
def forward(self, x: torch.Tensor, attn_mask: torch.Tensor):
|
105 |
+
assert attn_mask is None
|
106 |
+
return super().forward(x)
|
107 |
+
|
108 |
+
|
109 |
+
class BlockWithMasking(nn.Module):
|
110 |
+
def __init__(
|
111 |
+
self,
|
112 |
+
dim: int,
|
113 |
+
attn_target: Callable,
|
114 |
+
mlp_ratio: int = 4,
|
115 |
+
act_layer: Callable = nn.GELU,
|
116 |
+
norm_layer: Callable = nn.LayerNorm,
|
117 |
+
ffn_dropout_rate: float = 0.0,
|
118 |
+
drop_path: float = 0.0,
|
119 |
+
layer_scale_type: str = None,
|
120 |
+
layer_scale_init_value: float = 1e-4,
|
121 |
+
):
|
122 |
+
super().__init__()
|
123 |
+
|
124 |
+
assert not isinstance(
|
125 |
+
attn_target, nn.Module
|
126 |
+
), "attn_target should be a Callable. Otherwise attn_target is shared across blocks!"
|
127 |
+
self.attn = attn_target()
|
128 |
+
if drop_path > 0.0:
|
129 |
+
self.drop_path = DropPath(drop_path)
|
130 |
+
else:
|
131 |
+
self.drop_path = nn.Identity()
|
132 |
+
self.norm_1 = norm_layer(dim)
|
133 |
+
mlp_hidden_dim = int(mlp_ratio * dim)
|
134 |
+
self.mlp = Mlp(
|
135 |
+
in_features=dim,
|
136 |
+
hidden_features=mlp_hidden_dim,
|
137 |
+
act_layer=act_layer,
|
138 |
+
drop=ffn_dropout_rate,
|
139 |
+
)
|
140 |
+
self.norm_2 = norm_layer(dim)
|
141 |
+
self.layer_scale_type = layer_scale_type
|
142 |
+
if self.layer_scale_type is not None:
|
143 |
+
assert self.layer_scale_type in [
|
144 |
+
"per_channel",
|
145 |
+
"scalar",
|
146 |
+
], f"Found Layer scale type {self.layer_scale_type}"
|
147 |
+
if self.layer_scale_type == "per_channel":
|
148 |
+
# one gamma value per channel
|
149 |
+
gamma_shape = [1, 1, dim]
|
150 |
+
elif self.layer_scale_type == "scalar":
|
151 |
+
# single gamma value for all channels
|
152 |
+
gamma_shape = [1, 1, 1]
|
153 |
+
# two gammas: for each part of the fwd in the encoder
|
154 |
+
self.layer_scale_gamma1 = nn.Parameter(
|
155 |
+
torch.ones(size=gamma_shape) * layer_scale_init_value,
|
156 |
+
requires_grad=True,
|
157 |
+
)
|
158 |
+
self.layer_scale_gamma2 = nn.Parameter(
|
159 |
+
torch.ones(size=gamma_shape) * layer_scale_init_value,
|
160 |
+
requires_grad=True,
|
161 |
+
)
|
162 |
+
|
163 |
+
def forward(self, x: torch.Tensor, attn_mask: torch.Tensor):
|
164 |
+
if self.layer_scale_type is None:
|
165 |
+
x = x + self.drop_path(self.attn(self.norm_1(x), attn_mask))
|
166 |
+
x = x + self.drop_path(self.mlp(self.norm_2(x)))
|
167 |
+
else:
|
168 |
+
x = (
|
169 |
+
x
|
170 |
+
+ self.drop_path(self.attn(self.norm_1(x), attn_mask))
|
171 |
+
* self.layer_scale_gamma1
|
172 |
+
)
|
173 |
+
x = x + self.drop_path(self.mlp(self.norm_2(x))) * self.layer_scale_gamma2
|
174 |
+
return x
|
175 |
+
|
176 |
+
|
177 |
+
_LAYER_NORM = partial(nn.LayerNorm, eps=1e-6)
|
178 |
+
|
179 |
+
|
180 |
+
class SimpleTransformer(nn.Module):
|
181 |
+
def __init__(
|
182 |
+
self,
|
183 |
+
attn_target: Callable,
|
184 |
+
embed_dim: int,
|
185 |
+
num_blocks: int,
|
186 |
+
block: Callable = BlockWithMasking,
|
187 |
+
pre_transformer_layer: Callable = None,
|
188 |
+
post_transformer_layer: Callable = None,
|
189 |
+
drop_path_rate: float = 0.0,
|
190 |
+
drop_path_type: str = "progressive",
|
191 |
+
norm_layer: Callable = _LAYER_NORM,
|
192 |
+
mlp_ratio: int = 4,
|
193 |
+
ffn_dropout_rate: float = 0.0,
|
194 |
+
layer_scale_type: str = None, # from cait; possible values are None, "per_channel", "scalar"
|
195 |
+
layer_scale_init_value: float = 1e-4, # from cait; float
|
196 |
+
weight_init_style: str = "jax", # possible values jax or pytorch
|
197 |
+
):
|
198 |
+
"""
|
199 |
+
Simple Transformer with the following features
|
200 |
+
1. Supports masked attention
|
201 |
+
2. Supports DropPath
|
202 |
+
3. Supports LayerScale
|
203 |
+
4. Supports Dropout in Attention and FFN
|
204 |
+
5. Makes few assumptions about the input except that it is a Tensor
|
205 |
+
"""
|
206 |
+
super().__init__()
|
207 |
+
self.pre_transformer_layer = pre_transformer_layer
|
208 |
+
if drop_path_type == "progressive":
|
209 |
+
dpr = [x.item() for x in torch.linspace(0, drop_path_rate, num_blocks)]
|
210 |
+
elif drop_path_type == "uniform":
|
211 |
+
dpr = [drop_path_rate for i in range(num_blocks)]
|
212 |
+
else:
|
213 |
+
raise ValueError(f"Unknown drop_path_type: {drop_path_type}")
|
214 |
+
|
215 |
+
self.blocks = nn.Sequential(
|
216 |
+
*[
|
217 |
+
block(
|
218 |
+
dim=embed_dim,
|
219 |
+
attn_target=attn_target,
|
220 |
+
mlp_ratio=mlp_ratio,
|
221 |
+
ffn_dropout_rate=ffn_dropout_rate,
|
222 |
+
drop_path=dpr[i],
|
223 |
+
norm_layer=norm_layer,
|
224 |
+
layer_scale_type=layer_scale_type,
|
225 |
+
layer_scale_init_value=layer_scale_init_value,
|
226 |
+
)
|
227 |
+
for i in range(num_blocks)
|
228 |
+
]
|
229 |
+
)
|
230 |
+
self.post_transformer_layer = post_transformer_layer
|
231 |
+
self.weight_init_style = weight_init_style
|
232 |
+
self.apply(self._init_weights)
|
233 |
+
|
234 |
+
def _init_weights(self, m):
|
235 |
+
if isinstance(m, nn.Linear):
|
236 |
+
if self.weight_init_style == "jax":
|
237 |
+
# Based on MAE and official Jax ViT implementation
|
238 |
+
torch.nn.init.xavier_uniform_(m.weight)
|
239 |
+
elif self.weight_init_style == "pytorch":
|
240 |
+
# PyTorch ViT uses trunc_normal_
|
241 |
+
trunc_normal_(m.weight, std=0.02)
|
242 |
+
|
243 |
+
if m.bias is not None:
|
244 |
+
nn.init.constant_(m.bias, 0)
|
245 |
+
elif isinstance(m, (nn.LayerNorm)):
|
246 |
+
nn.init.constant_(m.bias, 0)
|
247 |
+
nn.init.constant_(m.weight, 1.0)
|
248 |
+
|
249 |
+
def forward(
|
250 |
+
self,
|
251 |
+
tokens: torch.Tensor,
|
252 |
+
attn_mask: torch.Tensor = None,
|
253 |
+
use_checkpoint: bool = False,
|
254 |
+
checkpoint_every_n: int = 1,
|
255 |
+
checkpoint_blk_ids: List[int] = None,
|
256 |
+
):
|
257 |
+
"""
|
258 |
+
Inputs
|
259 |
+
- tokens: data of shape N x L x D (or L x N x D depending on the attention implementation)
|
260 |
+
- attn: mask of shape L x L
|
261 |
+
|
262 |
+
Output
|
263 |
+
- x: data of shape N x L x D (or L x N x D depending on the attention implementation)
|
264 |
+
"""
|
265 |
+
if self.pre_transformer_layer:
|
266 |
+
tokens = self.pre_transformer_layer(tokens)
|
267 |
+
if use_checkpoint and checkpoint_blk_ids is None:
|
268 |
+
checkpoint_blk_ids = [
|
269 |
+
blk_id
|
270 |
+
for blk_id in range(len(self.blocks))
|
271 |
+
if blk_id % checkpoint_every_n == 0
|
272 |
+
]
|
273 |
+
if checkpoint_blk_ids:
|
274 |
+
checkpoint_blk_ids = set(checkpoint_blk_ids)
|
275 |
+
for blk_id, blk in enumerate(self.blocks):
|
276 |
+
if use_checkpoint and blk_id in checkpoint_blk_ids:
|
277 |
+
tokens = checkpoint.checkpoint(
|
278 |
+
blk, tokens, attn_mask, use_reentrant=False
|
279 |
+
)
|
280 |
+
else:
|
281 |
+
tokens = blk(tokens, attn_mask=attn_mask)
|
282 |
+
if self.post_transformer_layer:
|
283 |
+
tokens = self.post_transformer_layer(tokens)
|
284 |
+
return tokens
|
code/model/ImageBind/requirements.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
--extra-index-url https://download.pytorch.org/whl/cu113
|
2 |
+
torchvision==0.14.0
|
3 |
+
torchaudio==0.13.0
|
4 |
+
pytorchvideo @ git+https://github.com/facebookresearch/pytorchvideo.git@28fe037d212663c6a24f373b94cc5d478c8c1a1d
|
5 |
+
timm==0.6.7
|
6 |
+
ftfy
|
7 |
+
regex
|
8 |
+
einops
|
9 |
+
fvcore
|
10 |
+
decord==0.6.0
|