| Crates.io | ruqu-qgat-mol |
| lib.rs | ruqu-qgat-mol |
| version | 0.1.32 |
| created_at | 2026-01-18 00:31:32.638117+00 |
| updated_at | 2026-01-18 00:31:32.638117+00 |
| description | Quantum Graph Attention for Molecules - combines quantum mechanics with graph attention networks for molecular simulation |
| homepage | https://ruv.io |
| repository | https://github.com/ruvnet/ruvector |
| max_upload_size | |
| id | 2051496 |
| size | 196,912 |
Quantum Graph Attention for Molecules - Combines quantum mechanics with graph attention networks for molecular simulation.
Part of the ruQu quantum computing suite by ruv.io.
[dependencies]
ruqu-qgat-mol = "0.1"
use ruqu_qgat_mol::{MolecularGraph, QuantumGAT, GATConfig};
let config = GATConfig {
n_layers: 3,
hidden_dim: 64,
n_heads: 4,
..Default::default()
};
let model = QuantumGAT::new(config)?;
let molecule = MolecularGraph::from_smiles("CCO")?; // Ethanol
let energy = model.predict_energy(&molecule)?;
println!("Predicted energy: {:.4} eV", energy);
MIT License - see LICENSE