Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinAchondo committed Jul 5, 2024
1 parent 1b22671 commit 799729b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions xppbe/Model/PDE_Model.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,8 @@ def get_charges(self):
if phi < scale_min_value_2:
scale_min_value_2 = phi

self.scale_phi_1 = (scale_min_value_1,scale_max_value_1)
self.scale_phi_2 = (scale_min_value_2,scale_max_value_2)
self.scale_phi_1 = [float(scale_min_value_1),float(scale_max_value_1)]
self.scale_phi_2 = [float(scale_min_value_2),float(scale_max_value_2)]


def get_integral_operators(self):
Expand Down
4 changes: 2 additions & 2 deletions xppbe/NN/NeuralNet.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def __init__(self,
weight_factorization=False,
scale_input=True,
scale_output=False,
scale_input_s=([-1.,-1.,-1.],[1.,1.,1.]),
scale_output_s=(-1.,1.),
scale_input_s=[[-1.,-1.,-1.],[1.,1.,1.]],
scale_output_s=[-1.,1.],
**kwargs):
super().__init__(**kwargs)

Expand Down

0 comments on commit 799729b

Please sign in to comment.