trustformers-models 0.1.1

Model implementations for TrustformeRS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
use crate::blip2::config::{Blip2Config, Blip2QFormerConfig, Blip2TextConfig, Blip2VisionConfig};
use trustformers_core::{
    device::Device,
    kernels::fused_ops::ActivationType,
    layers::{
        attention::{AttentionConfig, MultiHeadAttention},
        embedding::Embedding,
        layernorm::LayerNorm,
        linear::Linear,
    },
    tensor::{DType, Tensor},
    traits::Layer,
};

/// BLIP-2 model for vision-language tasks
#[derive(Debug, Clone)]
pub struct Blip2Model {
    /// Configuration
    pub config: Blip2Config,
    /// Vision encoder
    pub vision_model: Blip2VisionModel,
    /// Q-Former model
    pub qformer_model: Blip2QFormerModel,
    /// Vision-language projector
    pub vision_projection: Linear,
    /// Text projector
    pub text_projection: Linear,
    /// Learned query embeddings
    pub query_tokens: Tensor,
    /// Layer norm for queries
    pub query_layer_norm: LayerNorm,
    /// Device
    device: Device,
}

impl Blip2Model {
    /// Create a new BLIP-2 model with device
    pub fn new_with_device(
        config: Blip2Config,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let vision_model = Blip2VisionModel::new_with_device(config.vision_config.clone(), device)?;
        let qformer_model =
            Blip2QFormerModel::new_with_device(config.qformer_config.clone(), device)?;

        // Project Q-Former output (768) to vision space (1408)
        let vision_projection = Linear::new(
            config.qformer_config.hidden_size,
            config.vision_config.hidden_size,
            false,
        );

        let text_projection = Linear::new(
            config.qformer_config.hidden_size,
            config.text_config.hidden_size,
            false,
        );

        // Initialize learnable query tokens
        let query_tokens =
            Tensor::randn(&[config.num_query_tokens, config.qformer_config.hidden_size])?;

        let query_layer_norm = LayerNorm::new(
            vec![config.qformer_config.hidden_size],
            config.qformer_config.layer_norm_eps as f32,
        )?;

        Ok(Self {
            config,
            vision_model,
            qformer_model,
            vision_projection,
            text_projection,
            query_tokens,
            query_layer_norm,
            device,
        })
    }

    /// Create a new BLIP-2 model (defaults to CPU)
    pub fn new(config: Blip2Config) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass through the model
    pub fn forward(
        &self,
        input_ids: &Tensor,
        pixel_values: Option<&Tensor>,
        attention_mask: Option<&Tensor>,
    ) -> Result<Blip2Output, Box<dyn std::error::Error>> {
        let batch_size = input_ids.shape()[0];

        // Process images if provided
        let image_embeds = if let Some(pixel_values) = pixel_values {
            Some(self.vision_model.forward(pixel_values)?)
        } else {
            None
        };

        // Get query embeddings
        let query_embeds = self.get_query_embeddings(batch_size)?;

        // Process through Q-Former
        let qformer_outputs = self.qformer_model.forward(
            input_ids,
            image_embeds.as_ref(),
            Some(&query_embeds),
            attention_mask,
        )?;

        // Extract image and text features
        let image_features = if image_embeds.is_some() {
            Some(self.vision_projection.forward(qformer_outputs.pooler_output.clone())?)
        } else {
            None
        };

        let text_features = self.text_projection.forward(qformer_outputs.pooler_output.clone())?;

        Ok(Blip2Output {
            last_hidden_state: qformer_outputs.last_hidden_state,
            pooler_output: qformer_outputs.pooler_output,
            image_features,
            text_features,
            logits: qformer_outputs.logits,
        })
    }

    /// Get query embeddings expanded for batch
    fn get_query_embeddings(
        &self,
        batch_size: usize,
    ) -> Result<Tensor, Box<dyn std::error::Error>> {
        let query_embeds = self.query_layer_norm.forward(self.query_tokens.clone())?;

        // Expand for batch
        let expanded_shape = vec![
            batch_size,
            self.config.num_query_tokens,
            self.config.qformer_config.hidden_size,
        ];
        let expanded_embeds = query_embeds.unsqueeze(0)?.broadcast_to(&expanded_shape)?;

        Ok(expanded_embeds)
    }

    /// Get image features
    pub fn get_image_features(
        &self,
        pixel_values: &Tensor,
    ) -> Result<Tensor, Box<dyn std::error::Error>> {
        let image_embeds = self.vision_model.forward(pixel_values)?;
        let batch_size = pixel_values.shape()[0];

        let query_embeds = self.get_query_embeddings(batch_size)?;

        // Create dummy text input for Q-Former
        let input_ids = Tensor::zeros(&[batch_size, 1])?;

        let qformer_outputs = self.qformer_model.forward(
            &input_ids,
            Some(&image_embeds),
            Some(&query_embeds),
            None,
        )?;

        self.vision_projection
            .forward(qformer_outputs.pooler_output.clone())
            .map_err(|e| Box::new(e) as Box<dyn std::error::Error>)
    }

    /// Get text features
    pub fn get_text_features(
        &self,
        input_ids: &Tensor,
    ) -> Result<Tensor, Box<dyn std::error::Error>> {
        let batch_size = input_ids.shape()[0];
        let query_embeds = self.get_query_embeddings(batch_size)?;

        let qformer_outputs =
            self.qformer_model.forward(input_ids, None, Some(&query_embeds), None)?;

        self.text_projection
            .forward(qformer_outputs.pooler_output.clone())
            .map_err(|e| Box::new(e) as Box<dyn std::error::Error>)
    }
}

/// BLIP-2 for conditional generation
pub struct Blip2ForConditionalGeneration {
    /// BLIP-2 model
    pub blip2_model: Blip2Model,
    /// Language model head
    pub language_model: Box<dyn LanguageModel>,
    /// Language projection
    pub language_projection: Linear,
    /// Device
    device: Device,
}

impl Blip2ForConditionalGeneration {
    /// Create a new BLIP-2 for conditional generation with device
    pub fn new_with_device(
        config: Blip2Config,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let blip2_model = Blip2Model::new_with_device(config.clone(), device)?;

        let language_model: Box<dyn LanguageModel> = if config.use_decoder_only_language_model {
            Box::new(Blip2OptLanguageModel::new_with_device(
                config.text_config.clone(),
                device,
            )?)
        } else {
            Box::new(Blip2T5LanguageModel::new_with_device(
                config.text_config.clone(),
                device,
            )?)
        };

        let language_projection = Linear::new(
            config.qformer_config.hidden_size,
            config.text_config.hidden_size,
            false,
        );

        Ok(Self {
            blip2_model,
            language_model,
            language_projection,
            device,
        })
    }

    /// Create a new BLIP-2 for conditional generation (defaults to CPU)
    pub fn new(config: Blip2Config) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass for conditional generation
    pub fn forward(
        &self,
        input_ids: &Tensor,
        pixel_values: Option<&Tensor>,
        attention_mask: Option<&Tensor>,
        labels: Option<&Tensor>,
    ) -> Result<Blip2ConditionalGenerationOutput, Box<dyn std::error::Error>> {
        let batch_size = input_ids.shape()[0];

        // Get image features if provided
        let image_features = if let Some(pixel_values) = pixel_values {
            let image_embeds = self.blip2_model.vision_model.forward(pixel_values)?;

            let query_embeds = self.blip2_model.get_query_embeddings(batch_size)?;

            // Create dummy text input for Q-Former
            let dummy_input_ids = Tensor::zeros(&[batch_size, 1])?;

            let qformer_outputs = self.blip2_model.qformer_model.forward(
                &dummy_input_ids,
                Some(&image_embeds),
                Some(&query_embeds),
                None,
            )?;

            let projected =
                self.language_projection.forward(qformer_outputs.last_hidden_state.clone())?;
            Some(projected)
        } else {
            None
        };

        // Process through language model
        let language_outputs = self.language_model.forward(
            input_ids,
            image_features.as_ref(),
            attention_mask,
            labels,
        )?;

        Ok(Blip2ConditionalGenerationOutput {
            loss: language_outputs.loss,
            logits: language_outputs.logits,
            hidden_states: language_outputs.hidden_states,
            image_features,
        })
    }

    /// Generate text from image
    pub fn generate(
        &self,
        pixel_values: &Tensor,
        input_ids: Option<&Tensor>,
        max_length: usize,
        temperature: f32,
        top_p: f32,
    ) -> Result<Tensor, Box<dyn std::error::Error>> {
        let batch_size = pixel_values.shape()[0];

        // Get image features
        let image_embeds = self.blip2_model.vision_model.forward(pixel_values)?;
        let query_embeds = self.blip2_model.get_query_embeddings(batch_size)?;

        // Create dummy text input for Q-Former
        let dummy_input_ids = Tensor::zeros(&[batch_size, 1])?;

        let qformer_outputs = self.blip2_model.qformer_model.forward(
            &dummy_input_ids,
            Some(&image_embeds),
            Some(&query_embeds),
            None,
        )?;

        let image_features =
            self.language_projection.forward(qformer_outputs.last_hidden_state.clone())?;

        // Initialize with input_ids or BOS token
        let mut generated_ids = if let Some(input_ids) = input_ids {
            input_ids.clone()
        } else {
            Tensor::full(
                self.blip2_model.config.text_config.bos_token_id as f32,
                vec![batch_size, 1],
            )?
        };

        // Generate tokens
        for _ in 0..max_length {
            let outputs =
                self.language_model.forward(&generated_ids, Some(&image_features), None, None)?;

            // Apply temperature and top-p sampling
            let next_token_logits = outputs.logits.select(1, -1)?;
            let next_token = self.sample_token(&next_token_logits, temperature, top_p)?;

            // Append to generated sequence
            generated_ids = Tensor::concat(&[generated_ids, next_token.clone()], 1)?;

            // Check for EOS token
            if self.check_eos_token(&next_token)? {
                break;
            }
        }

        Ok(generated_ids)
    }

    /// Sample token with temperature and top-p
    fn sample_token(
        &self,
        logits: &Tensor,
        temperature: f32,
        _top_p: f32,
    ) -> Result<Tensor, Box<dyn std::error::Error>> {
        let scaled_logits = logits.div_scalar(temperature)?;
        let probabilities = scaled_logits.softmax(-1)?;

        // Simple sampling (in practice, you'd implement proper nucleus sampling)
        let token_id = probabilities.argmax(-1)?;
        token_id
            .unsqueeze_i64(-1)
            .map_err(|e| Box::new(e) as Box<dyn std::error::Error>)
    }

    /// Check if EOS token is generated
    fn check_eos_token(&self, token: &Tensor) -> Result<bool, Box<dyn std::error::Error>> {
        let token_id = token.item::<i32>()?;
        Ok(token_id == self.blip2_model.config.text_config.eos_token_id)
    }
}

/// Vision model for BLIP-2
#[derive(Debug, Clone)]
pub struct Blip2VisionModel {
    /// Configuration
    pub config: Blip2VisionConfig,
    /// Patch embedding
    pub patch_embedding: Blip2PatchEmbedding,
    /// Class embedding
    pub class_embedding: Tensor,
    /// Position embedding
    pub position_embedding: Tensor,
    /// Transformer layers
    pub layers: Vec<Blip2VisionTransformerLayer>,
    /// Layer normalization
    pub layer_norm: LayerNorm,
    /// Pooler
    pub pooler: Option<Linear>,
    /// Device
    device: Device,
}

impl Blip2VisionModel {
    /// Create a new vision model with device
    pub fn new_with_device(
        config: Blip2VisionConfig,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let patch_embedding = Blip2PatchEmbedding::new_with_device(&config, device)?;

        let class_embedding = Tensor::randn(&[config.hidden_size])?;
        let position_embedding = Tensor::randn(&[config.seq_len(), config.hidden_size])?;

        let mut layers = Vec::new();
        for _ in 0..config.num_hidden_layers {
            layers.push(Blip2VisionTransformerLayer::new_with_device(
                &config, device,
            )?);
        }

        let layer_norm = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;

        let pooler = Some(Linear::new(config.hidden_size, config.hidden_size, true));

        Ok(Self {
            config,
            patch_embedding,
            class_embedding,
            position_embedding,
            layers,
            layer_norm,
            pooler,
            device,
        })
    }

    /// Create a new vision model (defaults to CPU)
    pub fn new(config: Blip2VisionConfig) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass through vision model
    pub fn forward(&self, pixel_values: &Tensor) -> Result<Tensor, Box<dyn std::error::Error>> {
        let batch_size = pixel_values.shape()[0];

        // Patch embedding
        let patch_embeds = self.patch_embedding.forward(pixel_values)?;

        // Add class token
        let class_token = self.class_embedding.unsqueeze(0)?.unsqueeze(0)?;
        let class_token = class_token
            .broadcast_to(&[batch_size, 1, self.config.hidden_size])?
            .contiguous()?;

        let embeddings = Tensor::concat(&[class_token, patch_embeds], 1)?;

        // Add position embeddings
        let position_embeds = self.position_embedding.unsqueeze(0)?;
        let position_embeds = position_embeds
            .broadcast_to(&[batch_size, self.config.seq_len(), self.config.hidden_size])?
            .contiguous()?;
        let embeddings = embeddings.add(&position_embeds)?;

        // Apply transformer layers
        let mut hidden_states = embeddings;
        for layer in &self.layers {
            hidden_states = layer.forward(&hidden_states)?;
        }

        // Layer normalization
        let hidden_states = self.layer_norm.forward(hidden_states)?;

        // Pooling
        if let Some(pooler) = &self.pooler {
            // select(1, 0) already reduces dimensions from [B, S, H] to [B, H]
            let cls_token = hidden_states.select(1, 0)?;
            let pooled = pooler.forward(cls_token)?;
            let pooled = pooled.tanh()?;
            let broadcasted = pooled.unsqueeze(1)?.broadcast_to(&[
                batch_size,
                hidden_states.shape()[1],
                self.config.hidden_size,
            ])?;
            // Ensure contiguous layout
            Ok(broadcasted.contiguous()?)
        } else {
            Ok(hidden_states)
        }
    }
}

/// Patch embedding for vision model
#[derive(Debug, Clone)]
pub struct Blip2PatchEmbedding {
    /// Projection layer
    pub projection: Linear,
    /// Patch size
    pub patch_size: usize,
    /// Hidden size
    pub hidden_size: usize,
    /// Device
    device: Device,
}

impl Blip2PatchEmbedding {
    /// Create patch embedding with device
    pub fn new_with_device(
        config: &Blip2VisionConfig,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let projection = Linear::new(
            config.patch_size * config.patch_size * config.num_channels,
            config.hidden_size,
            true,
        );

        Ok(Self {
            projection,
            patch_size: config.patch_size,
            hidden_size: config.hidden_size,
            device,
        })
    }

    /// Create patch embedding (defaults to CPU)
    pub fn new(config: &Blip2VisionConfig) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass
    pub fn forward(&self, pixel_values: &Tensor) -> Result<Tensor, Box<dyn std::error::Error>> {
        let batch_size = pixel_values.shape()[0];
        let channels = pixel_values.shape()[1];
        let height = pixel_values.shape()[2];
        let width = pixel_values.shape()[3];

        let num_patches_h = height / self.patch_size;
        let num_patches_w = width / self.patch_size;
        let num_patches = num_patches_h * num_patches_w;

        // Reshape to patches
        let patches = pixel_values.reshape(&[
            batch_size,
            channels,
            num_patches_h,
            self.patch_size,
            num_patches_w,
            self.patch_size,
        ])?;

        let patches = patches.permute(&[0, 2, 4, 1, 3, 5])?;

        // Convert to Vec and back to force contiguous standard layout
        let patches_vec = patches.to_vec_f32()?;
        let target_shape = vec![
            batch_size,
            num_patches,
            channels * self.patch_size * self.patch_size,
        ];
        let patches = Tensor::from_vec(patches_vec, &target_shape)?;

        // Project to hidden size
        let result = self
            .projection
            .forward(patches)
            .map_err(|e| Box::new(e) as Box<dyn std::error::Error>)?;
        Ok(result)
    }
}

/// Vision transformer layer
#[derive(Debug, Clone)]
pub struct Blip2VisionTransformerLayer {
    /// Self attention
    pub self_attention: MultiHeadAttention,
    /// Layer norm 1
    pub layer_norm1: LayerNorm,
    /// MLP
    pub mlp: Blip2MLP,
    /// Layer norm 2
    pub layer_norm2: LayerNorm,
    /// Device
    device: Device,
}

impl Blip2VisionTransformerLayer {
    /// Create new layer with device
    pub fn new_with_device(
        config: &Blip2VisionConfig,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let attention_config = AttentionConfig {
            hidden_size: config.hidden_size,
            num_heads: config.num_attention_heads,
            head_dim: config.hidden_size / config.num_attention_heads,
            dropout_prob: config.attention_dropout as f32,
            bias: true,
            max_seq_len: None,
        };

        let self_attention = MultiHeadAttention::new(
            attention_config.hidden_size,
            attention_config.num_heads,
            attention_config.dropout_prob,
            attention_config.bias,
        )?;
        let layer_norm1 = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;
        let mlp = Blip2MLP::new_with_device(
            config.hidden_size,
            config.intermediate_size,
            &config.hidden_act,
            device,
        )?;
        let layer_norm2 = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;

        Ok(Self {
            self_attention,
            layer_norm1,
            mlp,
            layer_norm2,
            device,
        })
    }

    /// Create new layer (defaults to CPU)
    pub fn new(config: &Blip2VisionConfig) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass
    pub fn forward(&self, hidden_states: &Tensor) -> Result<Tensor, Box<dyn std::error::Error>> {
        // Self attention with residual connection
        let residual = hidden_states.clone();
        let hidden_states = self.layer_norm1.forward(hidden_states.clone())?;
        let attention_output = self.self_attention.forward_attention(
            &hidden_states,
            &hidden_states,
            &hidden_states,
            None,
            false, // bidirectional attention
        )?;
        let hidden_states = residual.add(&attention_output)?;

        // MLP with residual connection
        let residual = hidden_states.clone();
        let hidden_states = self.layer_norm2.forward(hidden_states)?;
        let mlp_output = self.mlp.forward(&hidden_states)?;
        let hidden_states = residual.add(&mlp_output)?;

        Ok(hidden_states)
    }
}

/// Q-Former model for BLIP-2
#[derive(Debug, Clone)]
pub struct Blip2QFormerModel {
    /// Configuration
    pub config: Blip2QFormerConfig,
    /// Embeddings
    pub embeddings: Blip2QFormerEmbeddings,
    /// Encoder layers
    pub encoder_layers: Vec<Blip2QFormerLayer>,
    /// Pooler
    pub pooler: Linear,
    /// Device
    device: Device,
}

impl Blip2QFormerModel {
    /// Create new Q-Former model with device
    pub fn new_with_device(
        config: Blip2QFormerConfig,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let embeddings = Blip2QFormerEmbeddings::new_with_device(&config, device)?;

        let mut encoder_layers = Vec::new();
        for layer_idx in 0..config.num_hidden_layers {
            let has_cross_attention = layer_idx % config.cross_attention_frequency == 0;
            encoder_layers.push(Blip2QFormerLayer::new_with_device(
                &config,
                has_cross_attention,
                device,
            )?);
        }

        let pooler = Linear::new(config.hidden_size, config.hidden_size, true);

        Ok(Self {
            config,
            embeddings,
            encoder_layers,
            pooler,
            device,
        })
    }

    /// Create new Q-Former model (defaults to CPU)
    pub fn new(config: Blip2QFormerConfig) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass
    pub fn forward(
        &self,
        input_ids: &Tensor,
        encoder_hidden_states: Option<&Tensor>,
        query_embeds: Option<&Tensor>,
        attention_mask: Option<&Tensor>,
    ) -> Result<Blip2QFormerOutput, Box<dyn std::error::Error>> {
        // Get embeddings
        let mut hidden_states = self.embeddings.forward(input_ids)?;

        // Concatenate query embeddings if provided
        if let Some(query_embeds) = query_embeds {
            hidden_states = Tensor::concat(&[query_embeds.clone(), hidden_states], 1)?;
        }

        if let Some(_enc_hidden) = encoder_hidden_states {}

        // Apply encoder layers
        for layer in self.encoder_layers.iter() {
            hidden_states = layer.forward(&hidden_states, encoder_hidden_states, attention_mask)?;
        }

        // Pooling - select(1, 0) already reduces dimensions, no squeeze needed
        let pooler_output = self.pooler.forward(hidden_states.select(1, 0)?)?;
        let pooler_output = pooler_output.tanh()?;

        // Create logits (placeholder for language modeling head)
        let logits = Linear::new(self.config.hidden_size, self.config.vocab_size, false)
            .forward(hidden_states.clone())?;

        Ok(Blip2QFormerOutput {
            last_hidden_state: hidden_states,
            pooler_output,
            logits,
        })
    }
}

/// Q-Former embeddings
#[derive(Debug, Clone)]
pub struct Blip2QFormerEmbeddings {
    /// Word embeddings
    pub word_embeddings: Embedding,
    /// Position embeddings
    pub position_embeddings: Embedding,
    /// Token type embeddings
    pub token_type_embeddings: Embedding,
    /// Layer norm
    pub layer_norm: LayerNorm,
    /// Dropout
    pub dropout: f64,
    /// Device
    device: Device,
}

impl Blip2QFormerEmbeddings {
    /// Create new embeddings with device
    pub fn new_with_device(
        config: &Blip2QFormerConfig,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let word_embeddings = Embedding::new(config.vocab_size, config.hidden_size, None)?;
        let position_embeddings =
            Embedding::new(config.max_position_embeddings, config.hidden_size, None)?;
        let token_type_embeddings =
            Embedding::new(config.type_vocab_size, config.hidden_size, None)?;
        let layer_norm = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;

        Ok(Self {
            word_embeddings,
            position_embeddings,
            token_type_embeddings,
            layer_norm,
            dropout: config.hidden_dropout_prob,
            device,
        })
    }

    /// Create new embeddings (defaults to CPU)
    pub fn new(config: &Blip2QFormerConfig) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass
    pub fn forward(&self, input_ids: &Tensor) -> Result<Tensor, Box<dyn std::error::Error>> {
        let seq_length = input_ids.shape()[1];
        let batch_size = input_ids.shape()[0];

        // Word embeddings
        let input_ids_vec: Vec<u32> =
            input_ids.to_vec_f32()?.into_iter().map(|x| x as u32).collect();
        let word_embeds = self.word_embeddings.forward(input_ids_vec)?;
        let word_embeds = if word_embeds.shape().len() == 2
            && word_embeds.shape()[0] == batch_size * seq_length
        {
            // Reshape from [batch*seq, hidden] to [batch, seq, hidden]
            word_embeds.reshape(&[batch_size, seq_length, word_embeds.shape()[1]])?
        } else {
            word_embeds
        };

        // Position embeddings
        let position_ids = Tensor::range(0, seq_length as i64, DType::I64)?
            .unsqueeze(0)?
            .broadcast_to(&[batch_size, seq_length])?;
        let position_ids_vec: Vec<u32> =
            position_ids.to_vec_f32()?.into_iter().map(|x| x as u32).collect();
        let position_embeds = self.position_embeddings.forward(position_ids_vec)?;
        let position_embeds = if position_embeds.shape().len() == 2
            && position_embeds.shape()[0] == batch_size * seq_length
        {
            // Reshape from [batch*seq, hidden] to [batch, seq, hidden]
            position_embeds.reshape(&[batch_size, seq_length, position_embeds.shape()[1]])?
        } else {
            position_embeds
        };

        // Token type embeddings (default to 0)
        let token_type_ids = Tensor::zeros(&[batch_size, seq_length])?;
        let token_type_ids_vec: Vec<u32> =
            token_type_ids.to_vec_f32()?.into_iter().map(|x| x as u32).collect();
        let token_type_embeds = self.token_type_embeddings.forward(token_type_ids_vec)?;
        let token_type_embeds = if token_type_embeds.shape().len() == 2
            && token_type_embeds.shape()[0] == batch_size * seq_length
        {
            // Reshape from [batch*seq, hidden] to [batch, seq, hidden]
            token_type_embeds.reshape(&[batch_size, seq_length, token_type_embeds.shape()[1]])?
        } else {
            token_type_embeds
        };

        // Sum embeddings
        let embeddings = word_embeds.add(&position_embeds)?.add(&token_type_embeds)?;

        // Layer norm and dropout
        let embeddings = self.layer_norm.forward(embeddings)?;

        // Apply dropout (placeholder - would need proper dropout implementation)
        Ok(embeddings)
    }
}

/// Q-Former layer
#[derive(Debug, Clone)]
pub struct Blip2QFormerLayer {
    /// Self attention
    pub self_attention: MultiHeadAttention,
    /// Cross attention (optional)
    pub cross_attention: Option<MultiHeadAttention>,
    /// Projection for encoder hidden states (vision 1408 -> qformer 768)
    pub encoder_projection: Option<Linear>,
    /// Layer norm 1
    pub layer_norm1: LayerNorm,
    /// Layer norm 2
    pub layer_norm2: LayerNorm,
    /// Layer norm 3 (for cross attention)
    pub layer_norm3: Option<LayerNorm>,
    /// MLP
    pub mlp: Blip2MLP,
    /// Device
    device: Device,
}

impl Blip2QFormerLayer {
    /// Create new layer with device
    pub fn new_with_device(
        config: &Blip2QFormerConfig,
        has_cross_attention: bool,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let attention_config = AttentionConfig {
            hidden_size: config.hidden_size,
            num_heads: config.num_attention_heads,
            head_dim: config.hidden_size / config.num_attention_heads,
            dropout_prob: config.attention_probs_dropout_prob as f32,
            bias: true,
            max_seq_len: None,
        };

        let self_attention = MultiHeadAttention::new(
            attention_config.hidden_size,
            attention_config.num_heads,
            attention_config.dropout_prob,
            attention_config.bias,
        )?;
        let (cross_attention, encoder_projection) = if has_cross_attention {
            (
                Some(MultiHeadAttention::new(
                    attention_config.hidden_size,
                    attention_config.num_heads,
                    attention_config.dropout_prob,
                    attention_config.bias,
                )?),
                // Project vision encoder output (1408) to Q-Former hidden size (768)
                Some(Linear::new(1408, config.hidden_size, false)),
            )
        } else {
            (None, None)
        };

        let layer_norm1 = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;
        let layer_norm2 = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;
        let layer_norm3 = if has_cross_attention {
            Some(LayerNorm::new(
                vec![config.hidden_size],
                config.layer_norm_eps as f32,
            )?)
        } else {
            None
        };

        let mlp = Blip2MLP::new_with_device(
            config.hidden_size,
            config.intermediate_size,
            &config.hidden_act,
            device,
        )?;

        Ok(Self {
            self_attention,
            cross_attention,
            encoder_projection,
            layer_norm1,
            layer_norm2,
            layer_norm3,
            mlp,
            device,
        })
    }

    /// Create new layer (defaults to CPU)
    pub fn new(
        config: &Blip2QFormerConfig,
        has_cross_attention: bool,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, has_cross_attention, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass
    pub fn forward(
        &self,
        hidden_states: &Tensor,
        encoder_hidden_states: Option<&Tensor>,
        attention_mask: Option<&Tensor>,
    ) -> Result<Tensor, Box<dyn std::error::Error>> {
        // Self attention
        let residual = hidden_states.clone();
        let hidden_states = self.layer_norm1.forward(hidden_states.clone())?;
        let attention_output = self.self_attention.forward_attention(
            &hidden_states,
            &hidden_states,
            &hidden_states,
            attention_mask,
            false, // bidirectional attention
        )?;
        let hidden_states = residual.add(&attention_output)?;

        // Cross attention
        let hidden_states = if let (
            Some(cross_attention),
            Some(encoder_hidden_states),
            Some(layer_norm3),
            Some(encoder_proj),
        ) = (
            &self.cross_attention,
            encoder_hidden_states,
            &self.layer_norm3,
            &self.encoder_projection,
        ) {
            let residual = hidden_states.clone();
            let hidden_states_norm = layer_norm3.forward(hidden_states.clone())?;

            // Project encoder hidden states to match Q-Former dimension
            let projected_encoder = encoder_proj.forward(encoder_hidden_states.clone())?;

            let cross_attention_output = cross_attention.forward_attention(
                &hidden_states_norm,
                &projected_encoder,
                &projected_encoder,
                None,
                false, // bidirectional cross-attention
            )?;
            residual.add(&cross_attention_output)?
        } else {
            hidden_states
        };

        // MLP
        let residual = hidden_states.clone();
        let hidden_states = self.layer_norm2.forward(hidden_states)?;
        let mlp_output = self.mlp.forward(&hidden_states)?;
        let hidden_states = residual.add(&mlp_output)?;

        Ok(hidden_states)
    }
}

/// Multi-layer perceptron
#[derive(Debug, Clone)]
pub struct Blip2MLP {
    /// Linear 1
    pub linear1: Linear,
    /// Linear 2
    pub linear2: Linear,
    /// Activation
    pub activation: ActivationType,
    /// Device
    device: Device,
}

impl Blip2MLP {
    /// Create new MLP with device
    pub fn new_with_device(
        hidden_size: usize,
        intermediate_size: usize,
        activation: &str,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let linear1 = Linear::new(hidden_size, intermediate_size, true);
        let linear2 = Linear::new(intermediate_size, hidden_size, true);
        let activation = match activation {
            "gelu" => ActivationType::GELU,
            "relu" => ActivationType::ReLU,
            "silu" | "swish" => ActivationType::SiLU,
            "tanh" => ActivationType::Tanh,
            "sigmoid" => ActivationType::Sigmoid,
            _ => ActivationType::GELU, // default
        };

        Ok(Self {
            linear1,
            linear2,
            activation,
            device,
        })
    }

    /// Create new MLP (defaults to CPU)
    pub fn new(
        hidden_size: usize,
        intermediate_size: usize,
        activation: &str,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(hidden_size, intermediate_size, activation, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass
    pub fn forward(&self, hidden_states: &Tensor) -> Result<Tensor, Box<dyn std::error::Error>> {
        use trustformers_core::ops::activations::*;

        let hidden_states = self.linear1.forward(hidden_states.clone())?;
        let hidden_states = match self.activation {
            ActivationType::GELU => gelu(&hidden_states)?,
            ActivationType::ReLU => relu(&hidden_states)?,
            ActivationType::SiLU => silu(&hidden_states)?,
            ActivationType::Tanh => tanh(&hidden_states)?,
            ActivationType::Sigmoid => sigmoid(&hidden_states)?,
        };
        let hidden_states = self.linear2.forward(hidden_states)?;
        Ok(hidden_states)
    }
}

/// Language model trait
pub trait LanguageModel: Send + Sync {
    /// Forward pass
    fn forward(
        &self,
        input_ids: &Tensor,
        encoder_hidden_states: Option<&Tensor>,
        attention_mask: Option<&Tensor>,
        labels: Option<&Tensor>,
    ) -> Result<LanguageModelOutput, Box<dyn std::error::Error>>;
}

/// OPT language model for BLIP-2
#[derive(Debug, Clone)]
pub struct Blip2OptLanguageModel {
    /// Configuration
    pub config: Blip2TextConfig,
    /// Embeddings
    pub embeddings: Embedding,
    /// Decoder layers
    pub layers: Vec<Blip2OptLayer>,
    /// Layer norm
    pub layer_norm: LayerNorm,
    /// LM head
    pub lm_head: Linear,
    /// Device
    device: Device,
}

impl Blip2OptLanguageModel {
    /// Create new OPT language model with device
    pub fn new_with_device(
        config: Blip2TextConfig,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let embeddings = Embedding::new(config.vocab_size, config.hidden_size, None)?;

        let mut layers = Vec::new();
        for _ in 0..config.num_hidden_layers {
            layers.push(Blip2OptLayer::new_with_device(&config, device)?);
        }

        let layer_norm = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;
        let lm_head = Linear::new(config.hidden_size, config.vocab_size, false);

        Ok(Self {
            config,
            embeddings,
            layers,
            layer_norm,
            lm_head,
            device,
        })
    }

    /// Create new OPT language model (defaults to CPU)
    pub fn new(config: Blip2TextConfig) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }
}

impl LanguageModel for Blip2OptLanguageModel {
    fn forward(
        &self,
        input_ids: &Tensor,
        encoder_hidden_states: Option<&Tensor>,
        attention_mask: Option<&Tensor>,
        labels: Option<&Tensor>,
    ) -> Result<LanguageModelOutput, Box<dyn std::error::Error>> {
        let batch_size = input_ids.shape()[0];
        let seq_length = input_ids.shape()[1];

        // Get embeddings
        let input_ids_vec: Vec<u32> =
            input_ids.to_vec_f32()?.into_iter().map(|x| x as u32).collect();
        let hidden_states = self.embeddings.forward(input_ids_vec)?;

        // Reshape from [batch*seq, hidden] to [batch, seq, hidden]
        let mut hidden_states = if hidden_states.shape().len() == 2
            && hidden_states.shape()[0] == batch_size * seq_length
        {
            hidden_states.reshape(&[batch_size, seq_length, hidden_states.shape()[1]])?
        } else {
            hidden_states
        };

        // Prepend encoder hidden states if provided
        if let Some(encoder_hidden_states) = encoder_hidden_states {
            hidden_states = Tensor::concat(&[encoder_hidden_states.clone(), hidden_states], 1)?;
        }

        // Apply decoder layers
        for layer in &self.layers {
            hidden_states = layer.forward(&hidden_states, attention_mask)?;
        }

        // Layer norm
        let hidden_states = self.layer_norm.forward(hidden_states)?;

        // Language modeling head
        let logits = self.lm_head.forward(hidden_states.clone())?;

        // Calculate loss if labels provided
        let loss = if let Some(_labels) = labels {
            // Cross entropy loss (placeholder)
            Some(Tensor::scalar(1.0)?)
        } else {
            None
        };

        Ok(LanguageModelOutput {
            loss,
            logits,
            hidden_states,
        })
    }
}

/// OPT decoder layer
#[derive(Debug, Clone)]
pub struct Blip2OptLayer {
    /// Self attention
    pub self_attention: MultiHeadAttention,
    /// Layer norm 1
    pub layer_norm1: LayerNorm,
    /// MLP
    pub mlp: Blip2MLP,
    /// Layer norm 2
    pub layer_norm2: LayerNorm,
    /// Device
    device: Device,
}

impl Blip2OptLayer {
    /// Create new layer with device
    pub fn new_with_device(
        config: &Blip2TextConfig,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let attention_config = AttentionConfig {
            hidden_size: config.hidden_size,
            num_heads: config.num_attention_heads,
            head_dim: config.hidden_size / config.num_attention_heads,
            dropout_prob: config.attention_dropout as f32,
            bias: true,
            max_seq_len: None,
        };

        let self_attention = MultiHeadAttention::new(
            attention_config.hidden_size,
            attention_config.num_heads,
            attention_config.dropout_prob,
            attention_config.bias,
        )?;
        let layer_norm1 = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;
        let mlp = Blip2MLP::new_with_device(
            config.hidden_size,
            config.intermediate_size,
            &config.hidden_act,
            device,
        )?;
        let layer_norm2 = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;

        Ok(Self {
            self_attention,
            layer_norm1,
            mlp,
            layer_norm2,
            device,
        })
    }

    /// Create new layer (defaults to CPU)
    pub fn new(config: &Blip2TextConfig) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }

    /// Forward pass
    pub fn forward(
        &self,
        hidden_states: &Tensor,
        attention_mask: Option<&Tensor>,
    ) -> Result<Tensor, Box<dyn std::error::Error>> {
        // Self attention
        let residual = hidden_states.clone();
        let hidden_states = self.layer_norm1.forward(hidden_states.clone())?;
        let attention_output = self.self_attention.forward_attention(
            &hidden_states,
            &hidden_states,
            &hidden_states,
            attention_mask,
            false, // bidirectional attention
        )?;
        let hidden_states = residual.add(&attention_output)?;

        // MLP
        let residual = hidden_states.clone();
        let hidden_states = self.layer_norm2.forward(hidden_states)?;
        let mlp_output = self.mlp.forward(&hidden_states)?;
        let hidden_states = residual.add(&mlp_output)?;

        Ok(hidden_states)
    }
}

/// T5 language model for BLIP-2
#[derive(Debug, Clone)]
pub struct Blip2T5LanguageModel {
    /// Configuration
    pub config: Blip2TextConfig,
    /// Embeddings
    pub embeddings: Embedding,
    /// Encoder layers
    pub encoder_layers: Vec<Blip2OptLayer>,
    /// Decoder layers
    pub decoder_layers: Vec<Blip2OptLayer>,
    /// Layer norm
    pub layer_norm: LayerNorm,
    /// LM head
    pub lm_head: Linear,
    /// Device
    device: Device,
}

impl Blip2T5LanguageModel {
    /// Create new T5 language model with device
    pub fn new_with_device(
        config: Blip2TextConfig,
        device: Device,
    ) -> Result<Self, Box<dyn std::error::Error>> {
        let embeddings = Embedding::new(config.vocab_size, config.hidden_size, None)?;

        let mut encoder_layers = Vec::new();
        let mut decoder_layers = Vec::new();

        for _ in 0..config.num_hidden_layers {
            encoder_layers.push(Blip2OptLayer::new_with_device(&config, device)?);
            decoder_layers.push(Blip2OptLayer::new_with_device(&config, device)?);
        }

        let layer_norm = LayerNorm::new(vec![config.hidden_size], config.layer_norm_eps as f32)?;
        let lm_head = Linear::new(config.hidden_size, config.vocab_size, false);

        Ok(Self {
            config,
            embeddings,
            encoder_layers,
            decoder_layers,
            layer_norm,
            lm_head,
            device,
        })
    }

    /// Create new T5 language model (defaults to CPU)
    pub fn new(config: Blip2TextConfig) -> Result<Self, Box<dyn std::error::Error>> {
        Self::new_with_device(config, Device::CPU)
    }

    /// Get device
    pub fn device(&self) -> Device {
        self.device
    }
}

impl LanguageModel for Blip2T5LanguageModel {
    fn forward(
        &self,
        input_ids: &Tensor,
        encoder_hidden_states: Option<&Tensor>,
        attention_mask: Option<&Tensor>,
        labels: Option<&Tensor>,
    ) -> Result<LanguageModelOutput, Box<dyn std::error::Error>> {
        // Get embeddings
        let input_ids_vec: Vec<u32> =
            input_ids.to_vec_f32()?.into_iter().map(|x| x as u32).collect();
        let mut hidden_states = self.embeddings.forward(input_ids_vec)?;

        // Encoder
        for layer in &self.encoder_layers {
            hidden_states = layer.forward(&hidden_states, attention_mask)?;
        }

        // Decoder with cross-attention to encoder states
        if let Some(encoder_hidden_states) = encoder_hidden_states {
            hidden_states = Tensor::concat(&[encoder_hidden_states.clone(), hidden_states], 1)?;
        }

        for layer in &self.decoder_layers {
            hidden_states = layer.forward(&hidden_states, attention_mask)?;
        }

        // Layer norm
        let hidden_states = self.layer_norm.forward(hidden_states)?;

        // Language modeling head
        let logits = self.lm_head.forward(hidden_states.clone())?;

        // Calculate loss if labels provided
        let loss = if let Some(_labels) = labels {
            // Cross entropy loss (placeholder)
            Some(Tensor::scalar(1.0)?)
        } else {
            None
        };

        Ok(LanguageModelOutput {
            loss,
            logits,
            hidden_states,
        })
    }
}

/// Output structures
#[derive(Debug, Clone)]
pub struct Blip2Output {
    /// Last hidden state
    pub last_hidden_state: Tensor,
    /// Pooler output
    pub pooler_output: Tensor,
    /// Image features
    pub image_features: Option<Tensor>,
    /// Text features
    pub text_features: Tensor,
    /// Logits
    pub logits: Tensor,
}

#[derive(Debug, Clone)]
pub struct Blip2ConditionalGenerationOutput {
    /// Loss
    pub loss: Option<Tensor>,
    /// Logits
    pub logits: Tensor,
    /// Hidden states
    pub hidden_states: Tensor,
    /// Image features
    pub image_features: Option<Tensor>,
}

#[derive(Debug, Clone)]
pub struct Blip2QFormerOutput {
    /// Last hidden state
    pub last_hidden_state: Tensor,
    /// Pooler output
    pub pooler_output: Tensor,
    /// Logits
    pub logits: Tensor,
}

#[derive(Debug, Clone)]
pub struct LanguageModelOutput {
    /// Loss
    pub loss: Option<Tensor>,
    /// Logits
    pub logits: Tensor,
    /// Hidden states
    pub hidden_states: Tensor,
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    #[ignore] // Heavy test - large model creation (~17s), run with --ignored
    fn test_blip2_model_creation() {
        let config = Blip2Config::default();
        let model = Blip2Model::new(config);
        assert!(model.is_ok());
    }

    #[test]
    #[ignore] // Heavy test - vision model creation (~17s), run with --ignored
    fn test_blip2_vision_model() {
        let config = Blip2VisionConfig::default();
        let model = Blip2VisionModel::new(config);
        assert!(model.is_ok());
    }

    #[test]
    #[ignore] // Heavy test - QFormer model creation, run with --ignored
    fn test_blip2_qformer_model() {
        let config = Blip2QFormerConfig::default();
        let model = Blip2QFormerModel::new(config);
        assert!(model.is_ok());
    }

    #[test]
    fn test_blip2_patch_embedding() {
        let config = Blip2VisionConfig::default();
        let embedding = Blip2PatchEmbedding::new(&config);
        assert!(embedding.is_ok());
    }

    #[test]
    fn test_blip2_mlp() {
        let mlp = Blip2MLP::new(768, 3072, "gelu");
        assert!(mlp.is_ok());
    }

    #[test]
    #[ignore] // Very heavy test - OPT 2.7B language model (~45s), run with --ignored
    fn test_blip2_opt_language_model() {
        let config = Blip2TextConfig::opt_2_7b();
        let model = Blip2OptLanguageModel::new(config);
        assert!(model.is_ok());
    }

    #[test]
    #[ignore] // Very heavy test - T5 XL language model (~30s), run with --ignored
    fn test_blip2_t5_language_model() {
        let config = Blip2TextConfig::flan_t5_xl();
        let model = Blip2T5LanguageModel::new(config);
        assert!(model.is_ok());
    }
}