cidre 0.11.4

Apple frameworks bindings for rust
Documentation
mod types;
pub use types::ActivationType;
pub use types::ArithmeticOp;
pub use types::ComparisonOp;
pub use types::ConvolutionType;
pub use types::DType;
pub use types::DeviceType;
pub use types::ExecutionOpts;
pub use types::GradientClippingType;
pub use types::GraphCompilationOpts;
pub use types::GraphCompletionHandler;
pub use types::LSTMResultMode;
pub use types::LossType;
pub use types::PaddingPolicy;
pub use types::PaddingType;
pub use types::PoolingType;
pub use types::RandomInitializerType;
pub use types::ReductionType;
pub use types::RegularizationType;
pub use types::SampleMode;
pub use types::SoftmaxOp;

mod tensor_descriptor;
pub use tensor_descriptor::TensorDesc;

mod tensor_data;
pub use tensor_data::TensorData;

mod tensor_parameter;
pub use tensor_parameter::TensorParameter;

mod tensor;
pub use tensor::Tensor;

mod activation_descriptor;
pub use activation_descriptor::ActivationDesc;

mod layer;
pub use layer::Layer;

mod activation_layer;
pub use activation_layer::ActivationLayer;

mod arithmetic_layer;
pub use arithmetic_layer::ArithmeticLayer;

mod batch_normalization_layer;
pub use batch_normalization_layer::BatchNormalizationLayer;

mod optimizer_descriptor;
pub use optimizer_descriptor::OptimizerDesc;

mod optimizer;
pub use optimizer::Optimizer;

mod adam_optimizer;
pub use adam_optimizer::AdamOptimizer;

mod adamw_optimizer;
pub use adamw_optimizer::AdamWOptimizer;

mod device;
pub use device::Device;

mod graph;
pub use graph::Graph;

mod inference_graph;
pub use inference_graph::InferenceGraph;

mod training_graph;
pub use training_graph::TrainingGraph;

mod matmul;
pub use matmul::Desc as MatMulDesc;
pub use matmul::Layer as MatMulLayer;