-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMLkit.py
22 lines (21 loc) · 970 Bytes
/
MLkit.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
***********************************************************
* Author : Zhou Wei *
* Date : Wed Mar 20 12:36:42 2019 *
* E-mail : [email protected] *
* You are using the program scripted by Zhou Wei. *
* The MLkit is used for traditional machine learning based*
* on sklearn. You can ues most of the estimator in sklearn*
* at MLkit and implement auto standardization, feature *
* selection, Fitting and Prediction. *
* If you find some bugs, please send emails to me. *
* Please let me know and acknowledge in your publication. *
* Thank you! *
* Best wishes! *
***********************************************************
'''
from Script import MLKITs
if __name__ == "__main__":
MLKITs.Commands()