cameroncameron commited on
Commit
6a12690
·
verified ·
1 Parent(s): 338733b

Upload 2 files

Browse files
Files changed (2) hide show
  1. app.py +0 -0
  2. requirements.txt +40 -0
app.py ADDED
The diff for this file is too large to render. See raw diff
 
requirements.txt ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Streamlit 应用核心依赖
2
+ streamlit>=1.33.0
3
+ pandas>=1.5.0
4
+ numpy>=1.21.0
5
+
6
+ # 数据处理和分析
7
+ altair>=4.2.0
8
+ rapidfuzz>=2.0.0
9
+
10
+ # 变点检测
11
+ ruptures>=1.1.0
12
+
13
+ # 时间序列分析和预测
14
+ prophet>=1.1.0
15
+ statsmodels>=0.13.0
16
+
17
+ # 机器学习
18
+ scikit-learn>=1.1.0
19
+ xgboost>=1.6.0
20
+ # 🔧 新增:CatBoost支持
21
+ catboost>=1.2.0
22
+
23
+ # 可选:高级分析功能
24
+ shap>=0.41.0
25
+ matplotlib>=3.5.0
26
+ seaborn>=0.11.0
27
+
28
+ # 文件处理
29
+ openpyxl>=3.0.0
30
+ xlrd>=2.0.0
31
+
32
+ # 其他工具
33
+ joblib>=1.1.0
34
+ typing-extensions>=4.0.0
35
+
36
+ optuna>=2.0.0,<2.1.0
37
+ shap
38
+ scipy
39
+
40
+