文件名称:bumblebee:人工智能框架
文件大小:29.31MB
文件格式:ZIP
更新时间:2024-06-30 05:28:25
Java
大WaSP人工智能图书馆 Bumblebee 是一个易于使用的神经网络库,其创建时考虑了速度和易于训练。 示例用法 import static com.infinity.bumblebee.training.net.NetworkDSL.usingTrainingData ; // Step 1: train the network NeuralNet network = usingTrainingData( " ./test-data/iris.csv " ) // (required) gives the file with training data .havingLayers( 4 , 4 , 3 ) // (required) gives the shape of the neural network .atMostIter