oxirs-vec 0.2.4

Vector index abstractions for semantic similarity and AI-augmented querying
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
//! Knowledge Graph Embeddings for RDF data
//!
//! This module implements various knowledge graph embedding methods:
//! - TransE: Translation-based embeddings
//! - ComplEx: Complex number embeddings
//! - RotatE: Rotation-based embeddings

use crate::gnn_embeddings::{GraphSAGE, GCN};
use crate::random_utils::NormalSampler as Normal;
use crate::Vector;
use anyhow::{anyhow, Result};
use nalgebra::{Complex, DVector};
use scirs2_core::random::{Random, Rng, RngExt};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

/// Knowledge graph embedding model type
#[derive(Debug, Clone, Copy, PartialEq, Serialize, Deserialize)]
pub enum KGEmbeddingModelType {
    /// Translation-based embeddings (TransE)
    TransE,
    /// Complex number embeddings (ComplEx)
    ComplEx,
    /// Rotation-based embeddings (RotatE)
    RotatE,
    /// Graph Convolutional Network (GCN)
    GCN,
    /// GraphSAGE (Graph Sample and Aggregate)
    GraphSAGE,
}

/// Configuration for knowledge graph embeddings
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct KGEmbeddingConfig {
    /// Model type
    pub model: KGEmbeddingModelType,
    /// Embedding dimensions
    pub dimensions: usize,
    /// Learning rate
    pub learning_rate: f32,
    /// Margin for loss function
    pub margin: f32,
    /// Negative sampling ratio
    pub negative_samples: usize,
    /// Batch size for training
    pub batch_size: usize,
    /// Number of epochs
    pub epochs: usize,
    /// L1 or L2 norm
    pub norm: usize,
    /// Random seed
    pub random_seed: Option<u64>,
    /// Regularization weight
    pub regularization: f32,
}

impl Default for KGEmbeddingConfig {
    fn default() -> Self {
        Self {
            model: KGEmbeddingModelType::TransE,
            dimensions: 100,
            learning_rate: 0.01,
            margin: 1.0,
            negative_samples: 10,
            batch_size: 100,
            epochs: 100,
            norm: 2,
            random_seed: Some(42),
            regularization: 0.0,
        }
    }
}

/// Triple for knowledge graph
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct Triple {
    pub subject: String,
    pub predicate: String,
    pub object: String,
}

impl Triple {
    pub fn new(subject: String, predicate: String, object: String) -> Self {
        Self {
            subject,
            predicate,
            object,
        }
    }
}

/// Base trait for knowledge graph embedding models
pub trait KGEmbeddingModel: Send + Sync {
    /// Train the model on triples
    fn train(&mut self, triples: &[Triple]) -> Result<()>;

    /// Get entity embedding
    fn get_entity_embedding(&self, entity: &str) -> Option<Vector>;

    /// Get relation embedding
    fn get_relation_embedding(&self, relation: &str) -> Option<Vector>;

    /// Score a triple
    fn score_triple(&self, triple: &Triple) -> f32;

    /// Predict tail entities for (head, relation, ?)
    fn predict_tail(&self, head: &str, relation: &str, k: usize) -> Vec<(String, f32)>;

    /// Predict head entities for (?, relation, tail)
    fn predict_head(&self, relation: &str, tail: &str, k: usize) -> Vec<(String, f32)>;

    /// Get all entity embeddings
    fn get_entity_embeddings(&self) -> HashMap<String, Vector>;

    /// Get all relation embeddings
    fn get_relation_embeddings(&self) -> HashMap<String, Vector>;
}

/// TransE: Translation-based embeddings
/// Learns embeddings where h + r ≈ t for triple (h, r, t)
pub struct TransE {
    config: KGEmbeddingConfig,
    entity_embeddings: HashMap<String, DVector<f32>>,
    relation_embeddings: HashMap<String, DVector<f32>>,
    entities: Vec<String>,
    relations: Vec<String>,
}

impl TransE {
    pub fn new(config: KGEmbeddingConfig) -> Self {
        Self {
            config,
            entity_embeddings: HashMap::new(),
            relation_embeddings: HashMap::new(),
            entities: Vec::new(),
            relations: Vec::new(),
        }
    }

    /// Initialize embeddings
    fn initialize_embeddings(&mut self, triples: &[Triple]) {
        // Collect unique entities and relations
        let mut entities = std::collections::HashSet::new();
        let mut relations = std::collections::HashSet::new();

        for triple in triples {
            entities.insert(triple.subject.clone());
            entities.insert(triple.object.clone());
            relations.insert(triple.predicate.clone());
        }

        self.entities = entities.into_iter().collect();
        self.relations = relations.into_iter().collect();

        // Initialize embeddings with uniform distribution
        let mut rng = if let Some(seed) = self.config.random_seed {
            Random::seed(seed)
        } else {
            Random::seed(42)
        };

        let range_min = -6.0 / (self.config.dimensions as f32).sqrt();
        let range_max = 6.0 / (self.config.dimensions as f32).sqrt();

        // Initialize entity embeddings
        for entity in &self.entities {
            let values: Vec<f32> = (0..self.config.dimensions)
                .map(|_| rng.random_range(range_min..range_max))
                .collect();
            let mut embedding = DVector::from_vec(values);

            // Normalize entities
            let norm = embedding.norm();
            if norm > 0.0 {
                embedding /= norm;
            }

            self.entity_embeddings.insert(entity.clone(), embedding);
        }

        // Initialize relation embeddings
        for relation in &self.relations {
            let values: Vec<f32> = (0..self.config.dimensions)
                .map(|_| rng.random_range(range_min..range_max))
                .collect();
            let embedding = DVector::from_vec(values);

            // Relations are not normalized in TransE
            self.relation_embeddings.insert(relation.clone(), embedding);
        }
    }

    /// Generate negative samples
    #[allow(deprecated)]
    fn generate_negative_samples(&self, triple: &Triple, rng: &mut impl Rng) -> Vec<Triple> {
        let mut negatives = Vec::new();

        for _ in 0..self.config.negative_samples {
            if rng.random_bool(0.5) {
                // Corrupt head
                let mut negative = triple.clone();
                loop {
                    let idx = rng.random_range(0..self.entities.len());
                    let entity = &self.entities[idx];
                    if entity != &triple.subject {
                        negative.subject = entity.clone();
                        break;
                    }
                }
                negatives.push(negative);
            } else {
                // Corrupt tail
                let mut negative = triple.clone();
                loop {
                    let idx = rng.random_range(0..self.entities.len());
                    let entity = &self.entities[idx];
                    if entity != &triple.object {
                        negative.object = entity.clone();
                        break;
                    }
                }
                negatives.push(negative);
            }
        }

        negatives
    }

    /// Calculate distance for a triple
    fn distance(&self, triple: &Triple) -> f32 {
        let h = self
            .entity_embeddings
            .get(&triple.subject)
            .expect("subject entity should have embedding");
        let r = self
            .relation_embeddings
            .get(&triple.predicate)
            .expect("predicate relation should have embedding");
        let t = self
            .entity_embeddings
            .get(&triple.object)
            .expect("object entity should have embedding");

        let translation = h + r - t;

        match self.config.norm {
            1 => translation.iter().map(|x| x.abs()).sum(),
            2 => translation.norm(),
            _ => translation.norm(),
        }
    }

    /// Update embeddings using gradient descent
    fn update_embeddings(&mut self, positive: &Triple, negatives: &[Triple]) {
        let pos_dist = self.distance(positive);

        for negative in negatives {
            let neg_dist = self.distance(negative);
            let loss = (self.config.margin + pos_dist - neg_dist).max(0.0);

            if loss > 0.0 {
                // Calculate gradients
                let h_pos = self
                    .entity_embeddings
                    .get(&positive.subject)
                    .expect("positive subject entity should have embedding")
                    .clone();
                let r = self
                    .relation_embeddings
                    .get(&positive.predicate)
                    .expect("positive predicate relation should have embedding")
                    .clone();
                let t_pos = self
                    .entity_embeddings
                    .get(&positive.object)
                    .expect("positive object entity should have embedding")
                    .clone();

                let h_neg = self
                    .entity_embeddings
                    .get(&negative.subject)
                    .expect("negative subject entity should have embedding")
                    .clone();
                let t_neg = self
                    .entity_embeddings
                    .get(&negative.object)
                    .expect("negative object entity should have embedding")
                    .clone();

                let pos_grad = &h_pos + &r - &t_pos;
                let neg_grad = &h_neg + &r - &t_neg;

                // Normalize gradients
                let pos_norm = pos_grad.norm();
                let neg_norm = neg_grad.norm();

                let pos_grad_norm = if pos_norm > 0.0 {
                    &pos_grad / pos_norm
                } else {
                    pos_grad
                };
                let neg_grad_norm = if neg_norm > 0.0 {
                    &neg_grad / neg_norm
                } else {
                    neg_grad
                };

                // Update embeddings
                let lr = self.config.learning_rate;

                // Update positive triple embeddings
                if let Some(h) = self.entity_embeddings.get_mut(&positive.subject) {
                    *h -= lr * &pos_grad_norm;
                    // Re-normalize entity
                    let norm = h.norm();
                    if norm > 0.0 {
                        *h /= norm;
                    }
                }

                if let Some(r) = self.relation_embeddings.get_mut(&positive.predicate) {
                    *r -= lr * (&pos_grad_norm - &neg_grad_norm);
                }

                if let Some(t) = self.entity_embeddings.get_mut(&positive.object) {
                    *t += lr * &pos_grad_norm;
                    // Re-normalize entity
                    let norm = t.norm();
                    if norm > 0.0 {
                        *t /= norm;
                    }
                }

                // Update negative triple embeddings
                if positive.subject != negative.subject {
                    if let Some(h) = self.entity_embeddings.get_mut(&negative.subject) {
                        *h += lr * &neg_grad_norm;
                        // Re-normalize entity
                        let norm = h.norm();
                        if norm > 0.0 {
                            *h /= norm;
                        }
                    }
                }

                if positive.object != negative.object {
                    if let Some(t) = self.entity_embeddings.get_mut(&negative.object) {
                        *t -= lr * &neg_grad_norm;
                        // Re-normalize entity
                        let norm = t.norm();
                        if norm > 0.0 {
                            *t /= norm;
                        }
                    }
                }
            }
        }
    }
}

impl KGEmbeddingModel for TransE {
    fn train(&mut self, triples: &[Triple]) -> Result<()> {
        if triples.is_empty() {
            return Err(anyhow!("No triples provided for training"));
        }

        // Initialize embeddings
        self.initialize_embeddings(triples);

        let mut rng = if let Some(seed) = self.config.random_seed {
            Random::seed(seed)
        } else {
            Random::seed(42)
        };

        // Training loop
        for epoch in 0..self.config.epochs {
            let mut total_loss = 0.0;
            let mut batch_count = 0;

            // Shuffle triples
            let mut shuffled_triples = triples.to_vec();
            // Note: Using manual random selection instead of SliceRandom
            // Manually shuffle using Fisher-Yates algorithm
            for i in (1..shuffled_triples.len()).rev() {
                let j = rng.random_range(0..i + 1);
                shuffled_triples.swap(i, j);
            }

            // Process batches
            for batch in shuffled_triples.chunks(self.config.batch_size) {
                for triple in batch {
                    // Generate negative samples
                    let negatives = self.generate_negative_samples(triple, &mut rng);

                    // Calculate loss
                    let pos_dist = self.distance(triple);
                    for negative in &negatives {
                        let neg_dist = self.distance(negative);
                        let loss = (self.config.margin + pos_dist - neg_dist).max(0.0);
                        total_loss += loss;
                    }

                    // Update embeddings
                    self.update_embeddings(triple, &negatives);
                }
                batch_count += 1;
            }

            if epoch % 10 == 0 {
                let avg_loss = total_loss / (batch_count as f32 * self.config.batch_size as f32);
                tracing::info!("Epoch {}: Average loss = {:.4}", epoch, avg_loss);
            }
        }

        Ok(())
    }

    fn get_entity_embedding(&self, entity: &str) -> Option<Vector> {
        self.entity_embeddings
            .get(entity)
            .map(|embedding| Vector::new(embedding.iter().cloned().collect()))
    }

    fn get_relation_embedding(&self, relation: &str) -> Option<Vector> {
        self.relation_embeddings
            .get(relation)
            .map(|embedding| Vector::new(embedding.iter().cloned().collect()))
    }

    fn score_triple(&self, triple: &Triple) -> f32 {
        -self.distance(triple)
    }

    fn predict_tail(&self, head: &str, relation: &str, k: usize) -> Vec<(String, f32)> {
        let h = match self.entity_embeddings.get(head) {
            Some(emb) => emb,
            None => return Vec::new(),
        };

        let r = match self.relation_embeddings.get(relation) {
            Some(emb) => emb,
            None => return Vec::new(),
        };

        let translation = h + r;

        let mut scores: Vec<(String, f32)> = self
            .entities
            .iter()
            .filter(|e| *e != head)
            .filter_map(|entity| {
                self.entity_embeddings.get(entity).map(|t| {
                    let distance = match self.config.norm {
                        1 => (&translation - t).iter().map(|x| x.abs()).sum(),
                        2 => (&translation - t).norm(),
                        _ => (&translation - t).norm(),
                    };
                    (entity.clone(), -distance)
                })
            })
            .collect();

        scores.sort_by(|a, b| b.1.partial_cmp(&a.1).unwrap_or(std::cmp::Ordering::Equal));
        scores.truncate(k);
        scores
    }

    fn predict_head(&self, relation: &str, tail: &str, k: usize) -> Vec<(String, f32)> {
        let t = match self.entity_embeddings.get(tail) {
            Some(emb) => emb,
            None => return Vec::new(),
        };

        let r = match self.relation_embeddings.get(relation) {
            Some(emb) => emb,
            None => return Vec::new(),
        };

        let target = t - r;

        let mut scores: Vec<(String, f32)> = self
            .entities
            .iter()
            .filter(|e| *e != tail)
            .filter_map(|entity| {
                self.entity_embeddings.get(entity).map(|h| {
                    let distance = match self.config.norm {
                        1 => (h - &target).iter().map(|x| x.abs()).sum(),
                        2 => (h - &target).norm(),
                        _ => (h - &target).norm(),
                    };
                    (entity.clone(), -distance)
                })
            })
            .collect();

        scores.sort_by(|a, b| b.1.partial_cmp(&a.1).unwrap_or(std::cmp::Ordering::Equal));
        scores.truncate(k);
        scores
    }

    fn get_entity_embeddings(&self) -> HashMap<String, Vector> {
        self.entity_embeddings
            .iter()
            .map(|(k, v)| (k.clone(), Vector::new(v.as_slice().to_vec())))
            .collect()
    }

    fn get_relation_embeddings(&self) -> HashMap<String, Vector> {
        self.relation_embeddings
            .iter()
            .map(|(k, v)| (k.clone(), Vector::new(v.as_slice().to_vec())))
            .collect()
    }
}

/// ComplEx: Complex number embeddings
/// Uses complex-valued embeddings and Hermitian dot product
pub struct ComplEx {
    config: KGEmbeddingConfig,
    entity_embeddings_real: HashMap<String, DVector<f32>>,
    entity_embeddings_imag: HashMap<String, DVector<f32>>,
    relation_embeddings_real: HashMap<String, DVector<f32>>,
    relation_embeddings_imag: HashMap<String, DVector<f32>>,
    entities: Vec<String>,
    relations: Vec<String>,
}

impl ComplEx {
    pub fn new(config: KGEmbeddingConfig) -> Self {
        Self {
            config,
            entity_embeddings_real: HashMap::new(),
            entity_embeddings_imag: HashMap::new(),
            relation_embeddings_real: HashMap::new(),
            relation_embeddings_imag: HashMap::new(),
            entities: Vec::new(),
            relations: Vec::new(),
        }
    }

    /// Initialize embeddings with Xavier initialization
    fn initialize_embeddings(&mut self, triples: &[Triple]) {
        // Collect unique entities and relations
        let mut entities = std::collections::HashSet::new();
        let mut relations = std::collections::HashSet::new();

        for triple in triples {
            entities.insert(triple.subject.clone());
            entities.insert(triple.object.clone());
            relations.insert(triple.predicate.clone());
        }

        self.entities = entities.into_iter().collect();
        self.relations = relations.into_iter().collect();

        // Initialize with Xavier initialization
        let mut rng = if let Some(seed) = self.config.random_seed {
            Random::seed(seed)
        } else {
            Random::seed(42)
        };

        let std_dev = (2.0 / self.config.dimensions as f32).sqrt();
        let normal =
            Normal::new(0.0, std_dev).expect("normal distribution parameters should be valid");

        // Initialize entity embeddings
        for entity in &self.entities {
            let real_values: Vec<f32> = (0..self.config.dimensions)
                .map(|_| normal.sample(&mut rng))
                .collect();
            let imag_values: Vec<f32> = (0..self.config.dimensions)
                .map(|_| normal.sample(&mut rng))
                .collect();

            self.entity_embeddings_real
                .insert(entity.clone(), DVector::from_vec(real_values));
            self.entity_embeddings_imag
                .insert(entity.clone(), DVector::from_vec(imag_values));
        }

        // Initialize relation embeddings
        for relation in &self.relations {
            let real_values: Vec<f32> = (0..self.config.dimensions)
                .map(|_| normal.sample(&mut rng))
                .collect();
            let imag_values: Vec<f32> = (0..self.config.dimensions)
                .map(|_| normal.sample(&mut rng))
                .collect();

            self.relation_embeddings_real
                .insert(relation.clone(), DVector::from_vec(real_values));
            self.relation_embeddings_imag
                .insert(relation.clone(), DVector::from_vec(imag_values));
        }
    }

    /// Hermitian dot product for scoring
    fn hermitian_dot(&self, triple: &Triple) -> f32 {
        let h_real = self
            .entity_embeddings_real
            .get(&triple.subject)
            .expect("subject entity should have real embedding");
        let h_imag = self
            .entity_embeddings_imag
            .get(&triple.subject)
            .expect("subject entity should have imag embedding");
        let r_real = self
            .relation_embeddings_real
            .get(&triple.predicate)
            .expect("predicate relation should have real embedding");
        let r_imag = self
            .relation_embeddings_imag
            .get(&triple.predicate)
            .expect("predicate relation should have imag embedding");
        let t_real = self
            .entity_embeddings_real
            .get(&triple.object)
            .expect("object entity should have real embedding");
        let t_imag = self
            .entity_embeddings_imag
            .get(&triple.object)
            .expect("object entity should have imag embedding");

        // ComplEx scoring function: Re(<h, r, t̄>)
        // = Re(∑ h_i * r_i * conj(t_i))
        // = ∑ (h_real * r_real * t_real + h_real * r_imag * t_imag +
        //      h_imag * r_real * t_imag - h_imag * r_imag * t_real)

        let mut score = 0.0;
        for i in 0..self.config.dimensions {
            score += h_real[i] * r_real[i] * t_real[i]
                + h_real[i] * r_imag[i] * t_imag[i]
                + h_imag[i] * r_real[i] * t_imag[i]
                - h_imag[i] * r_imag[i] * t_real[i];
        }

        score
    }
}

impl KGEmbeddingModel for ComplEx {
    fn train(&mut self, triples: &[Triple]) -> Result<()> {
        if triples.is_empty() {
            return Err(anyhow!("No triples provided for training"));
        }

        // Initialize embeddings
        self.initialize_embeddings(triples);

        // Training implementation would go here
        // For brevity, using a simplified version

        Ok(())
    }

    fn get_entity_embedding(&self, entity: &str) -> Option<Vector> {
        // Return concatenated real and imaginary parts
        let real = self.entity_embeddings_real.get(entity)?;
        let imag = self.entity_embeddings_imag.get(entity)?;

        let mut values = Vec::with_capacity(self.config.dimensions * 2);
        values.extend(real.iter().cloned());
        values.extend(imag.iter().cloned());

        Some(Vector::new(values))
    }

    fn get_relation_embedding(&self, relation: &str) -> Option<Vector> {
        // Return concatenated real and imaginary parts
        let real = self.relation_embeddings_real.get(relation)?;
        let imag = self.relation_embeddings_imag.get(relation)?;

        let mut values = Vec::with_capacity(self.config.dimensions * 2);
        values.extend(real.iter().cloned());
        values.extend(imag.iter().cloned());

        Some(Vector::new(values))
    }

    fn score_triple(&self, triple: &Triple) -> f32 {
        self.hermitian_dot(triple)
    }

    fn predict_tail(&self, head: &str, relation: &str, k: usize) -> Vec<(String, f32)> {
        let mut scores: Vec<(String, f32)> = self
            .entities
            .iter()
            .filter(|e| *e != head)
            .map(|tail| {
                let triple = Triple::new(head.to_string(), relation.to_string(), tail.clone());
                let score = self.score_triple(&triple);
                (tail.clone(), score)
            })
            .collect();

        scores.sort_by(|a, b| b.1.partial_cmp(&a.1).unwrap_or(std::cmp::Ordering::Equal));
        scores.truncate(k);
        scores
    }

    fn predict_head(&self, relation: &str, tail: &str, k: usize) -> Vec<(String, f32)> {
        let mut scores: Vec<(String, f32)> = self
            .entities
            .iter()
            .filter(|e| *e != tail)
            .map(|head| {
                let triple = Triple::new(head.clone(), relation.to_string(), tail.to_string());
                let score = self.score_triple(&triple);
                (head.clone(), score)
            })
            .collect();

        scores.sort_by(|a, b| b.1.partial_cmp(&a.1).unwrap_or(std::cmp::Ordering::Equal));
        scores.truncate(k);
        scores
    }

    fn get_entity_embeddings(&self) -> HashMap<String, Vector> {
        self.entity_embeddings_real
            .iter()
            .map(|(k, v)| (k.clone(), Vector::new(v.as_slice().to_vec())))
            .collect()
    }

    fn get_relation_embeddings(&self) -> HashMap<String, Vector> {
        self.relation_embeddings_real
            .iter()
            .map(|(k, v)| (k.clone(), Vector::new(v.as_slice().to_vec())))
            .collect()
    }
}

/// RotatE: Rotation-based embeddings
/// Models relations as rotations in complex space
pub struct RotatE {
    config: KGEmbeddingConfig,
    entity_embeddings: HashMap<String, DVector<Complex<f32>>>,
    relation_embeddings: HashMap<String, DVector<f32>>, // Phase angles
    entities: Vec<String>,
    relations: Vec<String>,
}

impl RotatE {
    pub fn new(config: KGEmbeddingConfig) -> Self {
        Self {
            config,
            entity_embeddings: HashMap::new(),
            relation_embeddings: HashMap::new(),
            entities: Vec::new(),
            relations: Vec::new(),
        }
    }

    /// Initialize embeddings
    fn initialize_embeddings(&mut self, triples: &[Triple]) {
        // Collect unique entities and relations
        let mut entities = std::collections::HashSet::new();
        let mut relations = std::collections::HashSet::new();

        for triple in triples {
            entities.insert(triple.subject.clone());
            entities.insert(triple.object.clone());
            relations.insert(triple.predicate.clone());
        }

        self.entities = entities.into_iter().collect();
        self.relations = relations.into_iter().collect();

        let mut rng = if let Some(seed) = self.config.random_seed {
            Random::seed(seed)
        } else {
            Random::seed(42)
        };

        // Initialize entity embeddings (complex numbers with unit modulus)
        let phase_range = -std::f32::consts::PI..std::f32::consts::PI;

        for entity in &self.entities {
            let phases: Vec<Complex<f32>> = (0..self.config.dimensions)
                .map(|_| {
                    let phase = rng.random_range(phase_range.clone());
                    Complex::new(phase.cos(), phase.sin())
                })
                .collect();

            self.entity_embeddings
                .insert(entity.clone(), DVector::from_vec(phases));
        }

        // Initialize relation embeddings (phase angles)
        for relation in &self.relations {
            let phases: Vec<f32> = (0..self.config.dimensions)
                .map(|_| rng.random_range(phase_range.clone()))
                .collect();

            self.relation_embeddings
                .insert(relation.clone(), DVector::from_vec(phases));
        }
    }

    /// Calculate distance for RotatE
    fn distance(&self, triple: &Triple) -> f32 {
        let h = self
            .entity_embeddings
            .get(&triple.subject)
            .expect("subject entity should have embedding");
        let r_phases = self
            .relation_embeddings
            .get(&triple.predicate)
            .expect("predicate relation should have embedding");
        let t = self
            .entity_embeddings
            .get(&triple.object)
            .expect("object entity should have embedding");

        // Convert relation phases to complex numbers
        let r: DVector<Complex<f32>> = DVector::from_iterator(
            self.config.dimensions,
            r_phases
                .iter()
                .map(|&phase| Complex::new(phase.cos(), phase.sin())),
        );

        // Apply rotation: h ∘ r (element-wise complex multiplication)
        let rotated: DVector<Complex<f32>> = h.component_mul(&r);

        // Calculate distance ||h ∘ r - t||
        let diff = rotated - t;
        diff.iter().map(|c| c.norm()).sum::<f32>()
    }
}

impl KGEmbeddingModel for RotatE {
    fn train(&mut self, triples: &[Triple]) -> Result<()> {
        if triples.is_empty() {
            return Err(anyhow!("No triples provided for training"));
        }

        // Initialize embeddings
        self.initialize_embeddings(triples);

        // Training implementation would go here
        // For brevity, using a simplified version

        Ok(())
    }

    fn get_entity_embedding(&self, entity: &str) -> Option<Vector> {
        // Return magnitude and phase representation
        let complex_emb = self.entity_embeddings.get(entity)?;

        let mut values = Vec::with_capacity(self.config.dimensions * 2);
        for c in complex_emb.iter() {
            values.push(c.re); // Real part
            values.push(c.im); // Imaginary part
        }

        Some(Vector::new(values))
    }

    fn get_relation_embedding(&self, relation: &str) -> Option<Vector> {
        self.relation_embeddings
            .get(relation)
            .map(|phases| Vector::new(phases.iter().cloned().collect()))
    }

    fn score_triple(&self, triple: &Triple) -> f32 {
        let gamma = 12.0; // Fixed margin parameter for RotatE
        gamma - self.distance(triple)
    }

    fn predict_tail(&self, head: &str, relation: &str, k: usize) -> Vec<(String, f32)> {
        let h = match self.entity_embeddings.get(head) {
            Some(emb) => emb,
            None => return Vec::new(),
        };

        let r_phases = match self.relation_embeddings.get(relation) {
            Some(emb) => emb,
            None => return Vec::new(),
        };

        // Convert relation phases to complex numbers
        let r: DVector<Complex<f32>> = DVector::from_iterator(
            self.config.dimensions,
            r_phases
                .iter()
                .map(|&phase| Complex::new(phase.cos(), phase.sin())),
        );

        // Apply rotation
        let rotated = h.component_mul(&r);

        let mut scores: Vec<(String, f32)> = self
            .entities
            .iter()
            .filter(|e| *e != head)
            .filter_map(|entity| {
                self.entity_embeddings.get(entity).map(|t| {
                    let diff = &rotated - t;
                    let distance: f32 = diff.iter().map(|c| c.norm()).sum();
                    (entity.clone(), -distance)
                })
            })
            .collect();

        scores.sort_by(|a, b| b.1.partial_cmp(&a.1).unwrap_or(std::cmp::Ordering::Equal));
        scores.truncate(k);
        scores
    }

    fn predict_head(&self, relation: &str, tail: &str, k: usize) -> Vec<(String, f32)> {
        let t = match self.entity_embeddings.get(tail) {
            Some(emb) => emb,
            None => return Vec::new(),
        };

        let r_phases = match self.relation_embeddings.get(relation) {
            Some(emb) => emb,
            None => return Vec::new(),
        };

        // Convert relation phases to complex numbers (inverse rotation)
        let r_inv: DVector<Complex<f32>> = DVector::from_iterator(
            self.config.dimensions,
            r_phases
                .iter()
                .map(|&phase| Complex::new(phase.cos(), -phase.sin())),
        );

        let mut scores: Vec<(String, f32)> = self
            .entities
            .iter()
            .filter(|e| *e != tail)
            .filter_map(|entity| {
                self.entity_embeddings.get(entity).map(|h| {
                    let rotated = h.component_mul(&r_inv);
                    let diff = rotated - t;
                    let distance: f32 = diff.iter().map(|c| c.norm()).sum();
                    (entity.clone(), -distance)
                })
            })
            .collect();

        scores.sort_by(|a, b| b.1.partial_cmp(&a.1).unwrap_or(std::cmp::Ordering::Equal));
        scores.truncate(k);
        scores
    }

    fn get_entity_embeddings(&self) -> HashMap<String, Vector> {
        self.entity_embeddings
            .iter()
            .map(|(k, v)| {
                let real_values: Vec<f32> = v.iter().map(|c| c.re).collect();
                (k.clone(), Vector::new(real_values))
            })
            .collect()
    }

    fn get_relation_embeddings(&self) -> HashMap<String, Vector> {
        self.relation_embeddings
            .iter()
            .map(|(k, v)| (k.clone(), Vector::new(v.as_slice().to_vec())))
            .collect()
    }
}

/// Unified knowledge graph embedding interface
pub struct KGEmbedding {
    model: Box<dyn KGEmbeddingModel>,
    config: KGEmbeddingConfig,
}

impl KGEmbedding {
    /// Create a new knowledge graph embedding model
    pub fn new(config: KGEmbeddingConfig) -> Self {
        let model: Box<dyn KGEmbeddingModel> = match config.model {
            KGEmbeddingModelType::TransE => Box::new(TransE::new(config.clone())),
            KGEmbeddingModelType::ComplEx => Box::new(ComplEx::new(config.clone())),
            KGEmbeddingModelType::RotatE => Box::new(RotatE::new(config.clone())),
            KGEmbeddingModelType::GCN => {
                // Create GCN with default parameters
                let gcn = GCN::new(config.clone());
                Box::new(GCNAdapter::new(gcn))
            }
            KGEmbeddingModelType::GraphSAGE => {
                // Create GraphSAGE with default parameters
                let graphsage = GraphSAGE::new(config.clone())
                    .with_aggregator(crate::gnn_embeddings::AggregatorType::Mean);
                Box::new(GraphSAGEAdapter::new(graphsage))
            }
        };

        Self { model, config }
    }

    /// Train the model
    pub fn train(&mut self, triples: &[Triple]) -> Result<()> {
        self.model.train(triples)
    }

    /// Get entity embedding
    pub fn get_entity_embedding(&self, entity: &str) -> Option<Vector> {
        self.model.get_entity_embedding(entity)
    }

    /// Get relation embedding
    pub fn get_relation_embedding(&self, relation: &str) -> Option<Vector> {
        self.model.get_relation_embedding(relation)
    }

    /// Score a triple
    pub fn score_triple(&self, triple: &Triple) -> f32 {
        self.model.score_triple(triple)
    }

    /// Link prediction: predict missing tail
    pub fn predict_tail(&self, head: &str, relation: &str, k: usize) -> Vec<(String, f32)> {
        self.model.predict_tail(head, relation, k)
    }

    /// Link prediction: predict missing head
    pub fn predict_head(&self, relation: &str, tail: &str, k: usize) -> Vec<(String, f32)> {
        self.model.predict_head(relation, tail, k)
    }

    /// Triple classification: determine if a triple is likely true
    pub fn classify_triple(&self, triple: &Triple, threshold: f32) -> bool {
        self.model.score_triple(triple) > threshold
    }
}

/// Adapter to use GCN as a knowledge graph embedding model
pub struct GCNAdapter {
    gcn: GCN,
}

impl GCNAdapter {
    pub fn new(gcn: GCN) -> Self {
        Self { gcn }
    }
}

impl KGEmbeddingModel for GCNAdapter {
    fn train(&mut self, _triples: &[Triple]) -> Result<()> {
        // GCN training would be implemented here
        Ok(())
    }

    fn get_entity_embedding(&self, _entity: &str) -> Option<Vector> {
        // GCN embeddings would be computed from graph structure
        // For now, return a default embedding
        Some(Vector::new(vec![0.0; 128]))
    }

    fn get_relation_embedding(&self, _relation: &str) -> Option<Vector> {
        // Relations in GCN are typically handled differently
        Some(Vector::new(vec![0.0; 128]))
    }

    fn score_triple(&self, _triple: &Triple) -> f32 {
        // GCN scoring would use graph structure
        0.5
    }

    fn predict_tail(&self, _head: &str, _relation: &str, _k: usize) -> Vec<(String, f32)> {
        // Return mock predictions
        vec![]
    }

    fn predict_head(&self, _relation: &str, _tail: &str, _k: usize) -> Vec<(String, f32)> {
        // Return mock predictions
        vec![]
    }

    fn get_entity_embeddings(&self) -> HashMap<String, Vector> {
        HashMap::new()
    }

    fn get_relation_embeddings(&self) -> HashMap<String, Vector> {
        HashMap::new()
    }
}

/// Adapter to use GraphSAGE as a knowledge graph embedding model
pub struct GraphSAGEAdapter {
    graphsage: GraphSAGE,
}

impl GraphSAGEAdapter {
    pub fn new(graphsage: GraphSAGE) -> Self {
        Self { graphsage }
    }
}

impl KGEmbeddingModel for GraphSAGEAdapter {
    fn train(&mut self, _triples: &[Triple]) -> Result<()> {
        // GraphSAGE training would be implemented here
        Ok(())
    }

    fn get_entity_embedding(&self, _entity: &str) -> Option<Vector> {
        // GraphSAGE embeddings would be computed from neighbors
        Some(Vector::new(vec![0.0; self.graphsage.dimensions()]))
    }

    fn get_relation_embedding(&self, _relation: &str) -> Option<Vector> {
        // Relations in GraphSAGE are typically handled differently
        Some(Vector::new(vec![0.0; self.graphsage.dimensions()]))
    }

    fn score_triple(&self, _triple: &Triple) -> f32 {
        // GraphSAGE scoring would use neighbor aggregation
        0.5
    }

    fn predict_tail(&self, _head: &str, _relation: &str, _k: usize) -> Vec<(String, f32)> {
        // Return mock predictions
        vec![]
    }

    fn predict_head(&self, _relation: &str, _tail: &str, _k: usize) -> Vec<(String, f32)> {
        // Return mock predictions
        vec![]
    }

    fn get_entity_embeddings(&self) -> HashMap<String, Vector> {
        HashMap::new()
    }

    fn get_relation_embeddings(&self) -> HashMap<String, Vector> {
        HashMap::new()
    }
}

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

    fn create_test_triples() -> Vec<Triple> {
        vec![
            Triple::new("Alice".to_string(), "knows".to_string(), "Bob".to_string()),
            Triple::new(
                "Bob".to_string(),
                "knows".to_string(),
                "Charlie".to_string(),
            ),
            Triple::new(
                "Alice".to_string(),
                "likes".to_string(),
                "Pizza".to_string(),
            ),
            Triple::new("Bob".to_string(), "likes".to_string(), "Pasta".to_string()),
            Triple::new(
                "Charlie".to_string(),
                "knows".to_string(),
                "Alice".to_string(),
            ),
        ]
    }

    #[test]
    fn test_transe() -> Result<()> {
        let config = KGEmbeddingConfig {
            model: KGEmbeddingModelType::TransE,
            dimensions: 50,
            epochs: 10,
            ..Default::default()
        };

        let mut model = KGEmbedding::new(config);
        let triples = create_test_triples();

        model.train(&triples)?;

        // Test embeddings exist
        assert!(model.get_entity_embedding("Alice").is_some());
        assert!(model.get_relation_embedding("knows").is_some());

        // Test scoring
        let score = model.score_triple(&triples[0]);
        assert!(score.is_finite());

        // Test prediction
        let predictions = model.predict_tail("Alice", "knows", 2);
        assert!(!predictions.is_empty());
        Ok(())
    }

    #[test]
    fn test_complex() -> Result<()> {
        let config = KGEmbeddingConfig {
            model: KGEmbeddingModelType::ComplEx,
            dimensions: 50,
            epochs: 10,
            ..Default::default()
        };

        let mut model = KGEmbedding::new(config);
        let triples = create_test_triples();

        model.train(&triples)?;

        // Test embeddings exist
        assert!(model.get_entity_embedding("Bob").is_some());
        let emb = model
            .get_entity_embedding("Bob")
            .expect("Bob embedding should exist");
        assert_eq!(emb.dimensions, 100); // Real + imaginary parts
        Ok(())
    }

    #[test]
    fn test_rotate() -> Result<()> {
        let config = KGEmbeddingConfig {
            model: KGEmbeddingModelType::RotatE,
            dimensions: 50,
            epochs: 10,
            ..Default::default()
        };

        let mut model = KGEmbedding::new(config);
        let triples = create_test_triples();

        model.train(&triples)?;

        // Test embeddings exist
        assert!(model.get_entity_embedding("Charlie").is_some());
        assert!(model.get_relation_embedding("likes").is_some());

        // Test relation embedding is phase angles
        let rel_emb = model
            .get_relation_embedding("likes")
            .expect("likes relation embedding should exist");
        assert_eq!(rel_emb.dimensions, 50);
        Ok(())
    }
}