oxirs-embed 0.3.1

Knowledge graph embeddings with TransE, ComplEx, and custom models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Novel architectures module facade.
//!
//! This file re-exports the public surface of the split sibling modules so
//! that existing call sites continue to resolve symbols such as
//! [`NovelArchitectureModel`], every architecture parameter and state struct,
//! and the related `EmbeddingModel` trait implementation through
//! `crate::novel_architectures::*`.
//!
//! The implementation lives in:
//! - [`crate::novel_arch_types`]: configuration enums, parameter and state
//!   types.
//! - [`crate::novel_arch_impl`]: inherent impl blocks and the
//!   `EmbeddingModel` impl.
//! - `crate::novel_arch_tests` (test-only): exhaustive unit and async tests.

pub use crate::novel_arch_types::*;