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
//! Transformer-based embedding models module
//!
//! This module provides a modular implementation of transformer-based models
//! for generating embeddings including BERT, RoBERTa, Sentence-BERT, and
//! domain-specific variants.

pub mod preprocessing;
pub mod training;
pub mod types;

// Re-export commonly used types and functions
pub use preprocessing::*;
pub use training::*;
pub use types::*;