MVP with Tensorboard

This commit is contained in:
IDONTSUDO 2024-12-01 16:12:08 +00:00 committed by Igor Brylev
parent 5b9b51ad59
commit a0d089d5bb
549 changed files with 39977 additions and 31449 deletions

View file

@ -0,0 +1,14 @@
export interface Command {
tensorBoard: ExecProcess;
simulationProcess: ExecProcess;
btBuilderProcess: ExecProcess;
}
export interface ExecProcess {
execCommand: string;
date: null;
status: null | string;
delay: number;
checkCommand: null;
filter: null;
}