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
//! Federated learning module with organized sub-modules

pub mod aggregation;
pub mod config;
pub mod federated_learning_impl;
pub mod participant;
pub mod privacy;

// Re-export the main implementation
pub use self::aggregation::*;
pub use self::config::*;
pub use self::federated_learning_impl::*;
pub use self::participant::*;
pub use self::privacy::*;