├── CONTRIBUTING.md ├── LICENSE ├── MNIST digit classification ├── .idea │ ├── .gitignore │ ├── MNIST digit classification.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── .ipynb_checkpoints │ └── digits_classification-checkpoint.ipynb ├── Utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── keras_utils.cpython-37.pyc │ │ ├── matplotlib_utils.cpython-37.pyc │ │ ├── preprocessed_mnist.cpython-37.pyc │ │ └── tqdm_utils.cpython-37.pyc │ ├── keras_utils.py │ ├── matplotlib_utils.py │ ├── preprocessed_mnist.py │ └── tqdm_utils.py ├── digits_classification.ipynb └── images │ └── mnist_sample.png ├── Predict-Gender-Using-Names ├── Indian-Female-Names.csv ├── Indian-Male-Names.csv ├── README.md └── predict-gender-using-name.ipynb ├── Predicting Diabetes ├── Pima Indian Diabetes implementation using sklearn.ipynb ├── README.md ├── diabetes.csv └── diabetes.py └── README.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/LICENSE -------------------------------------------------------------------------------- /MNIST digit classification/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /MNIST digit classification/.idea/MNIST digit classification.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/.idea/MNIST digit classification.iml -------------------------------------------------------------------------------- /MNIST digit classification/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /MNIST digit classification/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/.idea/misc.xml -------------------------------------------------------------------------------- /MNIST digit classification/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/.idea/modules.xml -------------------------------------------------------------------------------- /MNIST digit classification/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/.idea/vcs.xml -------------------------------------------------------------------------------- /MNIST digit classification/.ipynb_checkpoints/digits_classification-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/.ipynb_checkpoints/digits_classification-checkpoint.ipynb -------------------------------------------------------------------------------- /MNIST digit classification/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MNIST digit classification/Utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/Utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /MNIST digit classification/Utils/__pycache__/keras_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/Utils/__pycache__/keras_utils.cpython-37.pyc -------------------------------------------------------------------------------- /MNIST digit classification/Utils/__pycache__/matplotlib_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/Utils/__pycache__/matplotlib_utils.cpython-37.pyc -------------------------------------------------------------------------------- /MNIST digit classification/Utils/__pycache__/preprocessed_mnist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/Utils/__pycache__/preprocessed_mnist.cpython-37.pyc -------------------------------------------------------------------------------- /MNIST digit classification/Utils/__pycache__/tqdm_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/Utils/__pycache__/tqdm_utils.cpython-37.pyc -------------------------------------------------------------------------------- /MNIST digit classification/Utils/keras_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/Utils/keras_utils.py -------------------------------------------------------------------------------- /MNIST digit classification/Utils/matplotlib_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/Utils/matplotlib_utils.py -------------------------------------------------------------------------------- /MNIST digit classification/Utils/preprocessed_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/Utils/preprocessed_mnist.py -------------------------------------------------------------------------------- /MNIST digit classification/Utils/tqdm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/Utils/tqdm_utils.py -------------------------------------------------------------------------------- /MNIST digit classification/digits_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/digits_classification.ipynb -------------------------------------------------------------------------------- /MNIST digit classification/images/mnist_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/MNIST digit classification/images/mnist_sample.png -------------------------------------------------------------------------------- /Predict-Gender-Using-Names/Indian-Female-Names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/Predict-Gender-Using-Names/Indian-Female-Names.csv -------------------------------------------------------------------------------- /Predict-Gender-Using-Names/Indian-Male-Names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/Predict-Gender-Using-Names/Indian-Male-Names.csv -------------------------------------------------------------------------------- /Predict-Gender-Using-Names/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/Predict-Gender-Using-Names/README.md -------------------------------------------------------------------------------- /Predict-Gender-Using-Names/predict-gender-using-name.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/Predict-Gender-Using-Names/predict-gender-using-name.ipynb -------------------------------------------------------------------------------- /Predicting Diabetes/Pima Indian Diabetes implementation using sklearn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/Predicting Diabetes/Pima Indian Diabetes implementation using sklearn.ipynb -------------------------------------------------------------------------------- /Predicting Diabetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/Predicting Diabetes/README.md -------------------------------------------------------------------------------- /Predicting Diabetes/diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/Predicting Diabetes/diabetes.csv -------------------------------------------------------------------------------- /Predicting Diabetes/diabetes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/Predicting Diabetes/diabetes.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Club-SIST/machine-learning-projects/HEAD/README.md --------------------------------------------------------------------------------