You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the scaling factor is not correctly sampled from the scaling range. Instead of: factor = np.random.uniform(self.scaling_range[0], self.scaling_range[0])
It should be factor = np.random.uniform(self.scaling_range[0], self.scaling_range[1])
The text was updated successfully, but these errors were encountered:
Here:
SFA3D/sfa/data_process/transformation.py
Line 367 in 0e2f0b6
the scaling factor is not correctly sampled from the scaling range. Instead of:
factor = np.random.uniform(self.scaling_range[0], self.scaling_range[0])
It should be
factor = np.random.uniform(self.scaling_range[0], self.scaling_range[1])
The text was updated successfully, but these errors were encountered: