@@ -734,7 +734,7 @@ def generate_ann_output_set(problem, reduced_problem, input_set, mode=None):
734
734
print ("Generating error analysis (only input/parameters) dataset" )
735
735
print ("\n " )
736
736
error_analysis_set = generate_ann_input_set (num_ann_samples = error_analysis_samples_num )
737
- error_numpy_sigma = np .zeros (error_analysis_set_sigma .shape [0 ])
737
+ error_numpy_sigma = np .zeros (error_analysis_set .shape [0 ])
738
738
739
739
for i in range (error_analysis_set .shape [0 ]):
740
740
print (f"Error analysis parameter number { i + 1 } of " )
@@ -749,14 +749,14 @@ def generate_ann_output_set(problem, reduced_problem, input_set, mode=None):
749
749
input_range = reduced_problem .input_range ,
750
750
output_range = reduced_problem .output_range_sigma ,
751
751
index = 0 , verbose = True )
752
- print (f"Error: { error_numpy_sigma [i ]} " )
752
+ print (f"Error (sigma) : { error_numpy_sigma [i ]} " )
753
753
754
754
# Error analysis dataset
755
755
print ("\n " )
756
756
print ("Generating error analysis (only input/parameters) dataset" )
757
757
print ("\n " )
758
758
error_analysis_set = generate_ann_input_set (num_ann_samples = error_analysis_samples_num )
759
- error_numpy_u = np .zeros (error_analysis_set_u .shape [0 ])
759
+ error_numpy_u = np .zeros (error_analysis_set .shape [0 ])
760
760
761
761
for i in range (error_analysis_set .shape [0 ]):
762
762
print (f"Error analysis parameter number { i + 1 } of " )
@@ -771,4 +771,4 @@ def generate_ann_output_set(problem, reduced_problem, input_set, mode=None):
771
771
input_range = reduced_problem .input_range ,
772
772
output_range = reduced_problem .output_range_u ,
773
773
index = 1 , verbose = True )
774
- print (f"Error: { error_numpy_sigma [i ]} " )
774
+ print (f"Error (U) : { error_numpy_sigma [i ]} " )
0 commit comments