euler314 commited on
Commit
92f38b7
·
verified ·
1 Parent(s): 9aa7702

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -104,7 +104,9 @@ class AdvancedProgressBar:
104
  self.eta_metric.empty()
105
 
106
  # Initialize sympy precision settings for higher accuracy
107
- sp.mpmath.mp.dps = 50 # Set decimal precision to 50 digits
 
 
108
 
109
  # Check if C++ module is already compiled, otherwise compile it
110
  cpp_compiled = False
 
104
  self.eta_metric.empty()
105
 
106
  # Initialize sympy precision settings for higher accuracy
107
+ # With these lines:
108
+ import mpmath
109
+ mpmath.mp.dps = 50 # Set decimal precision to 50 digits
110
 
111
  # Check if C++ module is already compiled, otherwise compile it
112
  cpp_compiled = False