File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,9 +38,11 @@ std::string StatusPanel::getText() {
3838 seconds = totalSec % 60 ;
3939 }
4040
41- ss << TextLabels::CURRENT_PHASE_TEXT << NNmodeName[(int )vstate->nnMode .load ()] << " \n "
42- << TextLabels::RUNNING_MODE_TEXT << NNRunningModeName[vstate->settings .pause .load ()] << " \n "
43- << TextLabels::ALGORITHM_MODE_TEXT << algorithmName[(int )vstate->algorithmMode .load ()] << " \n "
41+ ss << TextLabels::CURRENT_PHASE_TEXT << NNmodeName[(int )vstate->nnMode .load ()] << " \n " ;
42+ if (vstate->config .visualConfig .enableNetwrokVisual ) {
43+ ss << TextLabels::RUNNING_MODE_TEXT << NNRunningModeName[vstate->settings .pause .load ()] << " \n " ;
44+ }
45+ ss << TextLabels::ALGORITHM_MODE_TEXT << algorithmName[(int )vstate->algorithmMode .load ()] << " \n "
4446 << TextLabels::FPS_TEXT << fps << " /" << FPS_LIMIT << " \n "
4547 << TextLabels::CURRENT_BATCH_TEXT << currentBatch << " /" << totalBatches << " #" << batchPerSecond << " \n "
4648 << TextLabels::BATCH_SIZE_TEXT << vstate->config .trainingConfig .getBatchSize () << " \n "
Original file line number Diff line number Diff line change 11{
22 "visual config" : {
33 "enableVisuals" : true ,
4- "enableNetwrokVisual" : false ,
4+ "enableNetwrokVisual" : true ,
55 "modes" : [
66 { "state" : " pause" , "mode" : false },
77 { "state" : " precise mode" , "mode" : false },
1010 },
1111 "training config" : {
1212 "batch size" : 64 ,
13- "batch count" : 100000 ,
13+ "batch count" : 1000 ,
1414 "auto save" : {
1515 "saveEvery" : 500 ,
1616 "dataFilenameAutoSave" : " test.txt"
2121 },
2222 "optimizer" : {
2323 "type" : " const" ,
24- "lr" : 0
24+ "lr" : 0.5
2525 }
2626 },
2727 "network config" : [
You can’t perform that action at this time.
0 commit comments