neurocore

Crates.ioneurocore
lib.rsneurocore
version1.1.1
created_at2025-11-27 12:01:01.823546+00
updated_at2025-12-23 16:41:36.619215+00
descriptionNeurocore: Full-featured high-level neural network engine in Rust, including dense/LSTM layers, activations, optimizers, training, serialization, and real-time prediction.
homepage
repositoryhttps://github.com/seleste3580-dev/neurocore
max_upload_size
id1953619
size6,759
(seleste3580-dev)

documentation

README

📘 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);
}
Commit count: 0

cargo fmt