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
15
16
//! HTTP request handlers for the API
//!
//! This module contains all the endpoint handlers organized by functionality.

pub mod embeddings;
pub mod models;
pub mod predictions;
pub mod scoring;
pub mod system;

// Re-export all handlers for easy access
pub use embeddings::*;
pub use models::*;
pub use predictions::*;
pub use scoring::*;
pub use system::*;