neurocore 1.1.1

Neurocore: Full-featured high-level neural network engine in Rust, including dense/LSTM layers, activations, optimizers, training, serialization, and real-time prediction.
Documentation

📘 NeuroCore

Crates.io Docs.rs

NeuroCore is a high-level, professional neural network engine. Designed for research, education, and enterprise use.


Features

  • Fully implemented NeuralNetwork engine
  • Dense layers with configurable activations and learning
  • Real-time weight updates and professional-grade neural computations
  • Modular design for integration with hardware or simulations
  • Comprehensive tests and examples

Usage

use neurocore::NeuralNetwork;

fn main() {
    let mut net = NeuralNetwork::new(&[3, 5, 1]);
    let output = net.forward(&[0.5, 0.8, 0.1]);
    println!("Output: {:?}", output);
}