首页 > Web开发 > 详细

aforge.net神经网络保存

时间:2014-08-14 19:26:49      阅读:739      评论:0      收藏:0      [点我收藏+]
using System;
using System.Collections.Generic;
using System.Text;
 
using AForge.Neuro;
using AForge.Neuro.Learning;
 
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Runtime.Serialization;
 
namespace khiNeuralNet
{
    /// <summary>
    /// Allows saving and loading of the AForge Neural Network
    /// </summary>
    public class NeuralNetIO
    {
        // Protect the class from instantiation
        private NeuralNetIO() { }
 
        /// <summary>
        /// Save the network
        /// </summary>
        /// <param name="Net">The network to save</param>
        public static void SaveNet(ActivationNetwork Net, string FilePath)
        {
            FileStream fs = new FileStream(FilePath, FileMode.Create); 
            BinaryFormatter formatter = new BinaryFormatter(); 
            formatter.Serialize(fs, Net); 
            fs.Close();
        }
        
        /// <summary>
        /// Load a network
        /// </summary>
        /// <param name="FilePath">The path to the binary network file</param>
        /// <returns></returns>
        public static ActivationNetwork LoadNet(string FilePath)
        {
            FileStream fs = new FileStream(FilePath, FileMode.Open);
            BinaryFormatter formatter = new BinaryFormatter();  
            ActivationNetwork net = (ActivationNetwork)formatter.Deserialize(fs); 
            fs.Close();
            return net;
        }
 
    }
 
}

aforge.net神经网络保存,布布扣,bubuko.com

aforge.net神经网络保存

原文:http://www.cnblogs.com/villa/p/3912755.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!