Aucune description

anweiguo 696fe519d3 awg 更新LGB il y a 1 mois
.idea bc7a910e7f 修改python包版本、list(set())、howlongago il y a 1 mois
common 838bc40d03 Merge branch 'dev_david' of anweiguo/algorithm_platform into dev_awg il y a 1 mois
data_processing 5ec5d7ff0f 03131813 il y a 1 mois
evaluation_processing dc7c9434a3 awg il y a 1 mois
models_processing 696fe519d3 awg 更新LGB il y a 1 mois
post_processing 1f99c93c25 awg commit algorithm components il y a 3 mois
test_unit 3aa4c4df29 awg commit il y a 4 mois
.gitignore 794eafbea6 awg commit algorithm components il y a 1 mois
Dockerfile e0adec730b 02211541 il y a 2 mois
README.md 1a582bb983 awg commit algorithm components il y a 4 mois
requirements.txt 6a790aed8c awg 更新mysql il y a 1 mois
run_all.py c3771aeb38 03111844 il y a 1 mois

README.md

算法平台

该平台集成了每人经反复验证过的、有效的、通用的数据处理组件与算法组件,提升了组件的可读性、复用性、扩展性与可维护性。

1.代码目录结构

按照组件功能划分目录结构

数据处理 data_processing

  • [异常处理] abnormal_processing
  • [限电处理] processing_limit_power
  • ·agc-avc清洗 ·样板机法清洗 ·限电记录清洗 ·统计法清洗-光 ·统计法清洗-风

特征工程 feature_processing

  • [归一化] feature_normalizer
  • ·‌Min-Max归一化 ·‌Z-Score归一化
  • [PCA降维] feature_pca
  • [特征选择] feature_select
  • [特征变换] feature_transform

模型 model_processing

  • [模型训练] model_train
  • ·‌LSTM ·‌CNN ·DNN ·Lightgbm ·Xgboost ·RandomForest
  • [模型预测] model_predict

模型后处理 post_processing

评估 evaluation_processing

  • 准确率计算
  • 分析报告

2.代码测试

1.Docker镜像为python3.7,开发完后,需要做单元测试,requirements.txt加入所需要的包,run_all.py中services中加入启动程序的路径和端口。

2.启动run_all,可采用postman或代码等其他形式进行接口调用测试。测试通过方可提交。