Fix typo nn -> neuralnet.

This commit is contained in:
FiveMovesAhead 2025-07-17 13:16:13 +01:00
parent 05baad7688
commit 33c8b7a779

View File

@ -10,7 +10,7 @@ use serde::{Deserialize, Serialize};
use serde_json::{from_value, Map, Value};
use std::{any::Any, sync::Arc};
use crate::nn::MLP;
use crate::neuralnet::MLP;
const THREADS_PER_BLOCK: u32 = 1024;