Skip to content

Commit

Permalink
Update mainMeshNetFunctions.js
Browse files Browse the repository at this point in the history
fixing a failure in sequential processing of the last layer
  • Loading branch information
sergeyplis authored Feb 3, 2024
1 parent 823acd2 commit e73a51f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions js/brainchop/mainMeshNetFunctions.js
Original file line number Diff line number Diff line change
Expand Up @@ -4207,13 +4207,9 @@ class SequentialConvLayer {
const executionTime = endTime - startTime;
console.log(`Execution time for output layer: ${executionTime} milliseconds`);
resolve(outC);
} else {

chIdx++;
document.getElementById("progressBarChild").style.width = (chIdx + 1)*100/self.outChannels + "%";
}


chIdx++;
document.getElementById("progressBarChild").style.width = (chIdx + 1)*100/self.outChannels + "%";
}, 10);
});

Expand Down

0 comments on commit e73a51f

Please sign in to comment.