1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
   Appellation: concision-gnn <library>
   Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Graph Neural Networks (GNN)
//!
//! This library implements the framework for building graph-based neural networks.
//!
#![cfg_attr(not(feature = "std"), no_std)]
#![crate_name = "concision_gnn"]

#[cfg(no_std)]
extern crate alloc;
extern crate concision_core as concision;
extern crate ndarray as nd;
#[cfg(feature = "rand")]
extern crate ndarray_rand as ndrand;
extern crate ndarray_stats as stats;

pub mod prelude {}