jaideepsinhdabhi/JustDataML ? reverse-engineered prompt

Reverse engineered prompt

Build me a simple Python tool that makes machine learning easy for someone who does not want to write much code.

I want to give it a CSV config file, a training data file in a Data folder, and then run one command to train a model and optionally make predictions on a test file. It should handle both classification and regression, do basic preprocessing and normalization, try a few common models automatically, and pick the best one for the task. If hyperparameter tuning is turned on in the config, it should do that too.

Please also save useful outputs like the trained model, prediction results, a short model summary, and logs from each run so I can check what happened. Keep it friendly to use from the command line, with clear input options for config, train, predict, and output name. Use the existing README guidance as the main reference, and look up current docs online if you need to.