コード例 #1
0
ファイル: PantheonBrain.cs プロジェクト: Bgoon/PantheonML
        public PantheonBrain(string modelFilename)
        {
            Instance = this;

            this.modelFilename = modelFilename;
            inputDatas         = new float[1, MovingDataset.InputFloatCount];
            JobManager         = new GJobManager();

            MLLoop();
        }
コード例 #2
0
ファイル: GJobManager.cs プロジェクト: Bgoon/GKit
 public GJob(GJobManager ownerJobManager, Action action, float delayMillisec = 0f)
 {
     this.ownerJobManager = ownerJobManager;
     this.action          = action;
     this.delayMillisec   = delayMillisec;
     this.watch           = new Stopwatch();
     if (delayMillisec > 0f)
     {
         watch.Start();
     }
 }