Пример #1
0
        static void Main(string[] args)
        {
            /*var dTTest = new DTTest();
             * dTTest.Test();*/
            ApplicationLogging.SetLoggerFactory(LoggerFactory.Create(lb => lb.AddConsole()));
            var nnTest = new NNTest();

            nnTest.Test();
        }
 /**
  * 開始訓練
  */
 public void OnClickStartBtn()
 {
     if (SelectOrderList.Count != 0)
     {
         saveSelesctViewInfo();
     }
     nn = transform.GetComponent <NNTest>();
     nn.startTrain(allBuildingsInfo, ScoreList);
 }