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
//! Biomedical knowledge graph embeddings for scientific applications
//!
//! This module provides specialized embeddings for biomedical knowledge graphs
//! including gene-disease associations, drug-target interactions, pathways,
//! protein structures, and medical concept hierarchies.

pub mod embedding;
pub mod network_analysis;
pub mod text_model;
pub mod types;

pub use network_analysis::*;
pub use text_model::*;
pub use types::*;