├── .idea └── dataSources.xml ├── bin ├── check.sh ├── check_mini.sh ├── compare.sh ├── deploy.sh ├── deploy1.sh ├── download.sh ├── exclude.txt ├── kill.sh ├── main.sh ├── merge.sh ├── predict.sh └── sync.sh ├── core ├── __init__.py ├── check.py ├── config.py ├── config_local.py ├── db.py ├── del.py ├── feature.py ├── merge.py ├── merge_multiple_file.py ├── predict.py └── validate.py ├── ddl └── ddl ├── hyx_code.ipynb ├── img ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 9.png ├── imp ├── best_arg.h5 ├── lr_bin_9.h5 ├── v1.h5 ├── v3.1.h5 ├── v3.2.h5 ├── v3.3.h5 ├── v3.5.h5 ├── v3.6.h5 ├── v3.7.h5 ├── v3.8.h5 ├── v3.9_train_val.h5 ├── v3.9_val.h5 ├── v3.h5 ├── v4.0.h5 └── v5.1.h5 ├── install.md ├── mysql.md ├── notebook ├── .ipynb_checkpoints │ ├── Untitled-checkpoint.ipynb │ ├── analysis-Copy1-checkpoint.ipynb │ ├── analysis-checkpoint.ipynb │ ├── analysis_remote-checkpoint.ipynb │ └── remote-checkpoint.ipynb ├── analysis.ipynb ├── merge_final_file.ipynb └── readme.md ├── readme.md └── requirements.txt /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /bin/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/check.sh -------------------------------------------------------------------------------- /bin/check_mini.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/check_mini.sh -------------------------------------------------------------------------------- /bin/compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/compare.sh -------------------------------------------------------------------------------- /bin/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/deploy.sh -------------------------------------------------------------------------------- /bin/deploy1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/deploy1.sh -------------------------------------------------------------------------------- /bin/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/download.sh -------------------------------------------------------------------------------- /bin/exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/exclude.txt -------------------------------------------------------------------------------- /bin/kill.sh: -------------------------------------------------------------------------------- 1 | kill $(pidof python) -------------------------------------------------------------------------------- /bin/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/main.sh -------------------------------------------------------------------------------- /bin/merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/merge.sh -------------------------------------------------------------------------------- /bin/predict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/predict.sh -------------------------------------------------------------------------------- /bin/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/bin/sync.sh -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/check.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/config.py -------------------------------------------------------------------------------- /core/config_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/config_local.py -------------------------------------------------------------------------------- /core/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/db.py -------------------------------------------------------------------------------- /core/del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/del.py -------------------------------------------------------------------------------- /core/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/feature.py -------------------------------------------------------------------------------- /core/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/merge.py -------------------------------------------------------------------------------- /core/merge_multiple_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/merge_multiple_file.py -------------------------------------------------------------------------------- /core/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/predict.py -------------------------------------------------------------------------------- /core/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/core/validate.py -------------------------------------------------------------------------------- /ddl/ddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/ddl/ddl -------------------------------------------------------------------------------- /hyx_code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/hyx_code.ipynb -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/img/4.png -------------------------------------------------------------------------------- /img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/img/9.png -------------------------------------------------------------------------------- /imp/best_arg.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/best_arg.h5 -------------------------------------------------------------------------------- /imp/lr_bin_9.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/lr_bin_9.h5 -------------------------------------------------------------------------------- /imp/v1.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v1.h5 -------------------------------------------------------------------------------- /imp/v3.1.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.1.h5 -------------------------------------------------------------------------------- /imp/v3.2.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.2.h5 -------------------------------------------------------------------------------- /imp/v3.3.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.3.h5 -------------------------------------------------------------------------------- /imp/v3.5.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.5.h5 -------------------------------------------------------------------------------- /imp/v3.6.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.6.h5 -------------------------------------------------------------------------------- /imp/v3.7.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.7.h5 -------------------------------------------------------------------------------- /imp/v3.8.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.8.h5 -------------------------------------------------------------------------------- /imp/v3.9_train_val.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.9_train_val.h5 -------------------------------------------------------------------------------- /imp/v3.9_val.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.9_val.h5 -------------------------------------------------------------------------------- /imp/v3.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v3.h5 -------------------------------------------------------------------------------- /imp/v4.0.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v4.0.h5 -------------------------------------------------------------------------------- /imp/v5.1.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/imp/v5.1.h5 -------------------------------------------------------------------------------- /install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/install.md -------------------------------------------------------------------------------- /mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/mysql.md -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/notebook/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/analysis-Copy1-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/notebook/.ipynb_checkpoints/analysis-Copy1-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/analysis-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/notebook/.ipynb_checkpoints/analysis-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/analysis_remote-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/notebook/.ipynb_checkpoints/analysis_remote-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/remote-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/notebook/.ipynb_checkpoints/remote-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/notebook/analysis.ipynb -------------------------------------------------------------------------------- /notebook/merge_final_file.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/notebook/merge_final_file.ipynb -------------------------------------------------------------------------------- /notebook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/notebook/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyfoxs/df_jf/HEAD/requirements.txt --------------------------------------------------------------------------------