├── DataAnalysis.xlsx ├── README.md ├── README_exploration.md ├── README_feature_engg.md ├── README_models_classification.md ├── __init__.py ├── exploration.py ├── feature_engg.py ├── models_classification.py ├── models_regression.py └── setup.py /DataAnalysis.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/DataAnalysis.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/README.md -------------------------------------------------------------------------------- /README_exploration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/README_exploration.md -------------------------------------------------------------------------------- /README_feature_engg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/README_feature_engg.md -------------------------------------------------------------------------------- /README_models_classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/README_models_classification.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exploration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/exploration.py -------------------------------------------------------------------------------- /feature_engg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/feature_engg.py -------------------------------------------------------------------------------- /models_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/models_classification.py -------------------------------------------------------------------------------- /models_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/models_regression.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thismlguy/AJ_ML_Library/HEAD/setup.py --------------------------------------------------------------------------------