├── Example_Classifier_DimensionReduction.png ├── MachineLearning ├── Classifier.py ├── Clustering.py ├── DimensionReduction.py ├── Regression.py ├── __pycache__ │ ├── DimensionReduction.cpython-36.pyc │ ├── GaussianClassifier.cpython-36.pyc │ ├── Regression.cpython-36.pyc │ └── __init__.cpython-36.pyc └── algofunc.py ├── Main_randomSample_Classifier_Dimension.py ├── README.md ├── RegressionExample.png ├── RegressionExample.txt ├── demo_Application └── Main_example_spamIndentification2.py └── main_regression.py /Example_Classifier_DimensionReduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/Example_Classifier_DimensionReduction.png -------------------------------------------------------------------------------- /MachineLearning/Classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/MachineLearning/Classifier.py -------------------------------------------------------------------------------- /MachineLearning/Clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/MachineLearning/Clustering.py -------------------------------------------------------------------------------- /MachineLearning/DimensionReduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/MachineLearning/DimensionReduction.py -------------------------------------------------------------------------------- /MachineLearning/Regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/MachineLearning/Regression.py -------------------------------------------------------------------------------- /MachineLearning/__pycache__/DimensionReduction.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/MachineLearning/__pycache__/DimensionReduction.cpython-36.pyc -------------------------------------------------------------------------------- /MachineLearning/__pycache__/GaussianClassifier.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/MachineLearning/__pycache__/GaussianClassifier.cpython-36.pyc -------------------------------------------------------------------------------- /MachineLearning/__pycache__/Regression.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/MachineLearning/__pycache__/Regression.cpython-36.pyc -------------------------------------------------------------------------------- /MachineLearning/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/MachineLearning/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /MachineLearning/algofunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/MachineLearning/algofunc.py -------------------------------------------------------------------------------- /Main_randomSample_Classifier_Dimension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/Main_randomSample_Classifier_Dimension.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/README.md -------------------------------------------------------------------------------- /RegressionExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/RegressionExample.png -------------------------------------------------------------------------------- /RegressionExample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/RegressionExample.txt -------------------------------------------------------------------------------- /demo_Application/Main_example_spamIndentification2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/demo_Application/Main_example_spamIndentification2.py -------------------------------------------------------------------------------- /main_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TommyHuang821/Machine-learning-Python-/HEAD/main_regression.py --------------------------------------------------------------------------------