concision_gnn/lib.rs
1/*
2 Appellation: concision-gnn <library>
3 Contrib: FL03 <jo3mccain@icloud.com>
4*/
5//! # Graph Neural Networks (GNN)
6//!
7//! This library implements the framework for building graph-based neural networks.
8//!
9#![cfg_attr(not(feature = "std"), no_std)]
10#![crate_name = "concision_gnn"]
11
12#[cfg(feature = "alloc")]
13extern crate alloc;
14
15extern crate concision_core as concision;
16extern crate ndarray as nd;
17
18pub mod prelude {}