|
11 | 11 | MSRVTTCapBuilder, |
12 | 12 | MSVDCapBuilder, |
13 | 13 | VATEXCapBuilder, |
| 14 | + MSRVTTCapInstructBuilder, |
| 15 | + MSVDCapInstructBuilder, |
| 16 | + VATEXCapInstructBuilder, |
| 17 | + WebVid2MCapBuilder, |
| 18 | + WebVid2MCapInstructBuilder, |
| 19 | + VALORCaptionBuilder, |
| 20 | + VALORCaptionInstructBuilder, |
| 21 | + ViolinCapBuilder, |
| 22 | + ViolinCapInstructBuilder, |
| 23 | + VlepCaptionInstructBuilder, |
| 24 | + VlepCaptionBuilder, |
| 25 | + YouCookCaptionBuilder, |
| 26 | + YouCookCaptionInstructBuilder, |
| 27 | + COINCaptionBuilder, |
| 28 | + COINCaptionInstructBuilder, |
| 29 | + CharadeCaptionBuilder, |
| 30 | + CharadeCaptionInstructBuilder, |
| 31 | + TextCapsCapBuilder, |
| 32 | + TextCapsCapInstructBuilder, |
| 33 | + Flickr30kCapBuilder, |
| 34 | + Flickr30kCapInstructBuilder |
| 35 | + |
14 | 36 | ) |
15 | 37 | from lavis.datasets.builders.image_text_pair_builder import ( |
16 | 38 | ConceptualCaption12MBuilder, |
| 39 | + ConceptualCaption12MInstructBuilder, |
17 | 40 | ConceptualCaption3MBuilder, |
| 41 | + ConceptualCaption3MInstructBuilder, |
18 | 42 | VGCaptionBuilder, |
| 43 | + VGCaptionInstructBuilder, |
19 | 44 | SBUCaptionBuilder, |
| 45 | + SBUCaptionInstructBuilder, |
| 46 | + Laion400MBuilder, |
| 47 | + Laion400MInstructBuilder |
20 | 48 | ) |
21 | 49 | from lavis.datasets.builders.classification_builder import ( |
22 | 50 | NLVRBuilder, |
23 | 51 | SNLIVisualEntailmentBuilder, |
| 52 | + SNLIVisualEntailmentInstructBuilder, |
| 53 | + ViolinEntailmentInstructBuilder, |
| 54 | + ViolinEntailmentBuilder, |
| 55 | + ESC50ClassificationBuilder |
24 | 56 | ) |
25 | 57 | from lavis.datasets.builders.imagefolder_builder import ImageNetBuilder |
26 | | -from lavis.datasets.builders.video_qa_builder import MSRVTTQABuilder, MSVDQABuilder |
| 58 | +from lavis.datasets.builders.video_qa_builder import ( |
| 59 | + MSRVTTQABuilder, |
| 60 | + MSVDQABuilder, |
| 61 | + MSRVTTQAInstructBuilder, |
| 62 | + MSVDQAInstructBuilder, |
| 63 | + MusicAVQABuilder, |
| 64 | + MusicAVQAInstructBuilder |
| 65 | +) |
| 66 | + |
27 | 67 | from lavis.datasets.builders.vqa_builder import ( |
28 | 68 | COCOVQABuilder, |
| 69 | + COCOVQAInstructBuilder, |
29 | 70 | OKVQABuilder, |
| 71 | + OKVQAInstructBuilder, |
| 72 | + AOKVQABuilder, |
| 73 | + AOKVQAInstructBuilder, |
30 | 74 | VGVQABuilder, |
| 75 | + VGVQAInstructBuilder, |
31 | 76 | GQABuilder, |
| 77 | + GQAInstructBuilder, |
| 78 | + IconQABuilder, |
| 79 | + IconQAInstructBuilder, |
| 80 | + ScienceQABuilder, |
| 81 | + ScienceQAInstructBuilder, |
| 82 | + OCRVQABuilder, |
| 83 | + OCRVQAInstructBuilder, |
| 84 | + VizWizVQABuilder |
32 | 85 | ) |
33 | 86 | from lavis.datasets.builders.retrieval_builder import ( |
34 | 87 | MSRVTTRetrievalBuilder, |
35 | 88 | DiDeMoRetrievalBuilder, |
36 | 89 | COCORetrievalBuilder, |
37 | 90 | Flickr30kBuilder, |
38 | 91 | ) |
39 | | -from lavis.datasets.builders.dialogue_builder import AVSDDialBuilder |
| 92 | + |
| 93 | +from lavis.datasets.builders.audio_caption_builder import ( |
| 94 | + AudioSetBuilder, |
| 95 | + AudioCapsCapBuilder, |
| 96 | + AudioSetInstructBuilder, |
| 97 | + AudioCapsInstructCapBuilder, |
| 98 | + WavCapsCapInstructBuilder, |
| 99 | + WavCapsCapBuilder |
| 100 | +) |
| 101 | + |
| 102 | +from lavis.datasets.builders.object3d_caption_builder import ( |
| 103 | + ObjaverseCaptionInstructBuilder, |
| 104 | + ShapenetCaptionInstructBuilder, |
| 105 | + ObjaverseCaptionBuilder, |
| 106 | + ShapenetCaptionBuilder |
| 107 | +) |
| 108 | +from lavis.datasets.builders.object3d_qa_builder import ObjaverseQABuilder |
| 109 | +from lavis.datasets.builders.object3d_classification_builder import ModelNetClassificationBuilder |
| 110 | + |
| 111 | +from lavis.datasets.builders.audio_qa_builder import AudioCapsQABuilder, ClothoQABuilder |
| 112 | + |
| 113 | +from lavis.datasets.builders.dialogue_builder import ( |
| 114 | + AVSDDialBuilder, |
| 115 | + AVSDDialInstructBuilder, |
| 116 | + YT8MDialBuilder, |
| 117 | + LLaVA150kDialInstructBuilder, |
| 118 | + VisDialBuilder, |
| 119 | + VisDialInstructBuilder |
| 120 | +) |
40 | 121 | from lavis.datasets.builders.text_to_image_generation_builder import BlipDiffusionFinetuneBuilder |
41 | 122 |
|
| 123 | +from lavis.datasets.builders.discrn_builders import DiscrnImagePcBuilder, DiscrnAudioVideoBuilder |
| 124 | + |
42 | 125 | from lavis.common.registry import registry |
43 | 126 |
|
44 | 127 | __all__ = [ |
|
59 | 142 | "MSVDQABuilder", |
60 | 143 | "NLVRBuilder", |
61 | 144 | "OKVQABuilder", |
| 145 | + "AOKVQABuilder", |
62 | 146 | "SBUCaptionBuilder", |
63 | 147 | "SNLIVisualEntailmentBuilder", |
64 | 148 | "VATEXCapBuilder", |
65 | 149 | "VGCaptionBuilder", |
66 | 150 | "VGVQABuilder", |
67 | 151 | "AVSDDialBuilder", |
| 152 | + "Laion400MBuilder", |
| 153 | + |
| 154 | + "ViolinCapBuilder", |
| 155 | + "ViolinEntailmentBuilder", |
| 156 | + "VlepCaptionBuilder", |
| 157 | + "YouCookCaptionBuilder", |
| 158 | + "COINCaptionBuilder", |
| 159 | + "CharadeCaptionBuilder", |
| 160 | + "YT8MDialBuilder", |
| 161 | + "IconQABuilder", |
| 162 | + "ScienceQABuilder", |
| 163 | + "VisDialBuilder", |
| 164 | + "OCRVQABuilder", |
| 165 | + "VizWizVQABuilder", |
| 166 | + "TextCapsCapBuilder", |
| 167 | + "Flickr30kCapBuilder", |
| 168 | + "AudioSetBuilder", |
| 169 | + "AudioCapsCapBuilder", |
| 170 | + "WavCapsCapBuilder", |
| 171 | + "WebVid2MCapBuilder", |
| 172 | + "VALORCaptionBuilder", |
| 173 | + "ObjaverseCaptionBuilder", |
| 174 | + "ShapenetCaptionBuilder", |
| 175 | + "ObjaverseQABuilder", |
| 176 | + "MusicAVQABuilder", |
| 177 | + "ESC50ClassificationBuilder", |
| 178 | + |
| 179 | + ## Instruction Builders |
| 180 | + "AOKVQAInstructBuilder", |
| 181 | + "OKVQAInstructBuilder", |
| 182 | + "AudioSetInstructBuilder", |
| 183 | + "AudioCapsInstructCapBuilder", |
| 184 | + "AudioCapsQABuilder", |
| 185 | + "WavCapsCapInstructBuilder", |
| 186 | + "ObjaverseCaptionInstructBuilder", |
| 187 | + "ShapenetCaptionInstructBuilder", |
| 188 | + "ModelNetClassificationBuilder", |
| 189 | + "ObjaverseCaptionInstructBuilder", |
| 190 | + "MSRVTTCapInstructBuilder", |
| 191 | + "MSVDCapInstructBuilder", |
| 192 | + "VATEXCapInstructBuilder", |
| 193 | + "WebVid2MCapInstructBuilder", |
| 194 | + "MSRVTTQAInstructBuilder", |
| 195 | + "MSVDQAInstructBuilder", |
| 196 | + "VALORCaptionInstructBuilder", |
| 197 | + "AVSDDialInstructBuilder", |
| 198 | + "VisDialInstructBuilder", |
| 199 | + "MusicAVQAInstructBuilder", |
| 200 | + "ViolinCapInstructBuilder", |
| 201 | + "ViolinEntailmentInstructBuilder", |
| 202 | + "VlepCaptionInstructBuilder", |
| 203 | + "YouCookCaptionInstructBuilder", |
| 204 | + "COINCaptionInstructBuilder", |
| 205 | + "CharadeCaptionInstructBuilder", |
| 206 | + "COCOVQAInstructBuilder", |
| 207 | + "VGVQAInstructBuilder", |
| 208 | + "GQAInstructBuilder", |
| 209 | + "IconQAInstructBuilder", |
| 210 | + "SNLIVisualEntailmentInstructBuilder", |
| 211 | + "Laion400MInstructBuilder", |
| 212 | + "LLaVA150kDialInstructBuilder", |
| 213 | + "ScienceQAInstructBuilder", |
| 214 | + "OCRVQAInstructBuilder", |
| 215 | + "TextCapsCapInstructBuilder", |
| 216 | + "Flickr30kCapInstructBuilder", |
| 217 | + "ConceptualCaption12MInstructBuilder", |
| 218 | + "ConceptualCaption3MInstructBuilder", |
| 219 | + "VGCaptionInstructBuilder", |
| 220 | + "SBUCaptionInstructBuilder", |
| 221 | + "ClothoQABuilder", |
| 222 | + |
| 223 | + # DisCRN |
| 224 | + "DiscrnImagePcBuilder", |
| 225 | + "DiscrnAudioVideoBuilder" |
| 226 | + |
68 | 227 | ] |
69 | 228 |
|
70 | 229 |
|
|
0 commit comments