| Crates.io | neurocore |
| lib.rs | neurocore |
| version | 1.1.1 |
| created_at | 2025-11-27 12:01:01.823546+00 |
| updated_at | 2025-12-23 16:41:36.619215+00 |
| description | Neurocore: Full-featured high-level neural network engine in Rust, including dense/LSTM layers, activations, optimizers, training, serialization, and real-time prediction. |
| homepage | |
| repository | https://github.com/seleste3580-dev/neurocore |
| max_upload_size | |
| id | 1953619 |
| size | 6,759 |
NeuroCore is a high-level, professional neural network engine. Designed for research, education, and enterprise use.
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);
}