mlbench123 commited on
Commit
a26c360
Β·
verified Β·
1 Parent(s): d2c0d9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -425,13 +425,13 @@ class SemanticFormulaAnalyzer:
425
  summary = f"""
426
  ## πŸ“Š Analysis Summary
427
 
428
- **Total Formulas Loaded:** {len(self.formulas)} \n
429
- **βœ… Computable Formulas:** {len(computable_formulas)} ({len(computable_formulas) / len(self.formulas) * 100:.1f}%)\n
430
- **❌ Non-Computable Formulas:** {len(non_computable_formulas)} ({len(non_computable_formulas) / len(self.formulas) * 100:.1f}%)\n
431
- **πŸ“„ Files Processed:** {len(file_paths)}\n
432
- **πŸ”’ Data Points Extracted:** {len(extracted_data)}\n
433
- **🎯 Defaults Applied:** {defaults_applied}\n
434
- **πŸ”„ Computation Iterations:** {iteration + 1}\n
435
 
436
  ### πŸ“ˆ Progress by Iteration
437
  """
 
425
  summary = f"""
426
  ## πŸ“Š Analysis Summary
427
 
428
+ **Total Formulas Loaded:** {len(self.formulas)}
429
+ **βœ… Computable Formulas:** {len(computable_formulas)} ({len(computable_formulas) / len(self.formulas) * 100:.1f}%)
430
+ **❌ Non-Computable Formulas:** {len(non_computable_formulas)} ({len(non_computable_formulas) / len(self.formulas) * 100:.1f}%)
431
+ **πŸ“„ Files Processed:** {len(file_paths)}
432
+ **πŸ”’ Data Points Extracted:** {len(extracted_data)}
433
+ **🎯 Defaults Applied:** {defaults_applied}
434
+ **πŸ”„ Computation Iterations:** {iteration + 1}
435
 
436
  ### πŸ“ˆ Progress by Iteration
437
  """