Skip to content

Commit 6333f3c

Browse files
Update docker entrypoint file and scalers for MLPCpp compatibility
1 parent eca3953 commit 6333f3c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

RegressionTests/MLPCppwrapper/test_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
CV_flamelet_test = np.vstack((pv_test,h_test,Z_test)).T
4747
controlling_vars = ["ProgressVariable","EnthalpyTot","MixtureFraction"]
4848
activation_functions = ["linear",'relu','elu','tanh','sigmoid']
49-
scalers = ["minmax",'robust','standard']
49+
scalers = ['robust','standard']
5050

5151
def calc_error(MLP_output_Tensorflow:np.ndarray[float], MLP_output_MLPCpp:np.ndarray[float]):
5252
return(np.sqrt(np.average(np.power((MLP_output_Tensorflow-MLP_output_MLPCpp)/(MLP_output_MLPCpp),2))))

docker/build/runTests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ else
6666
cd src/SU2_DataMiner
6767
export SU2DATAMINER_HOME=$PWD
6868
fi
69-
69+
export TF_ENABLE_ONEDNN_OPTS=0
7070

7171
# Activate python virtual environment and install required modules
7272
echo "Installing python modules..."

0 commit comments

Comments
 (0)