diff --git a/index.html b/index.html index fc79663..683cb32 100644 --- a/index.html +++ b/index.html @@ -2195,6 +2195,8 @@ + + diff --git a/js/brainchop/mainMeshNetFunctions.js b/js/brainchop/mainMeshNetFunctions.js index eca83e1..47e2cac 100644 --- a/js/brainchop/mainMeshNetFunctions.js +++ b/js/brainchop/mainMeshNetFunctions.js @@ -7035,7 +7035,10 @@ resetMainParameters = () => { statData["GPU_Vendor_Full"] = detectGPUVendor_v0(); statData["GPU_Card_Full"] = detectGPUCardType_v0(); statData["CPU_Cores"] = getCPUNumCores(); - statData["TF_Backend"] = tf.getBackend(); + statData["TF_Backend"] = tf.getBackend(); + + statData["Which_Brainchop"] = "latest"; + statData["Seq_Conv"] = inferenceModelsList[$$("selectModel").getValue() - 1]["enableSeqConv"]; //-- Init diff --git a/js/brainchop/mainParameters.js b/js/brainchop/mainParameters.js index 2d983df..f72f26c 100644 --- a/js/brainchop/mainParameters.js +++ b/js/brainchop/mainParameters.js @@ -95,7 +95,7 @@ Data_Load: null, Preprocess_t: null, Inference_t: null, Merge_t: null, Postprocess_t: null, Model: null, Browser: null, Browser_Ver: null, OS: null, Texture_Size: null, Heap_Size_MB: Infinity, Used_Heap_MB: Infinity, Heap_Limit_MB: Infinity, WebGL1: null, WebGL2: null, TF_Backend: null, GPU_Vendor: null, GPU_Vendor_Full: null, - GPU_Card: null, GPU_Card_Full:null, Status: null, CPU_Cores: null, Error_Type: null, Extra_Err_Info: null, Extra_Info: null }; + GPU_Card: null, GPU_Card_Full:null, Status: null, CPU_Cores: null, Error_Type: null, Extra_Err_Info: null, Extra_Info: null, Which_Brainchop: null, Seq_Conv: null };