oxirs-embed 0.2.4

Knowledge graph embeddings with TransE, ComplEx, and custom models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Multi-modal embeddings module with organized sub-modules

pub mod adaptation;
pub mod config;
pub mod encoders;
pub mod learning;
pub mod model;

// Re-export all public types for convenience
pub use self::adaptation::*;
pub use self::config::*;
pub use self::encoders::*;
pub use self::learning::*;
pub use self::model::*;