{"id":18058255,"url":"https://github.com/jayadavv/dynamic-ml-model-selector","last_synced_at":"2026-04-11T03:34:58.672Z","repository":{"id":258710168,"uuid":"874620202","full_name":"Jayadavv/Dynamic-ML-Model-Selector","owner":"Jayadavv","description":"An interactive web application that allows users to upload their datasets and dynamically select, train, and evaluate various machine learning models. The app provides comprehensive performance metrics and visualizations, making it easy for users to analyze their data effectively.","archived":false,"fork":false,"pushed_at":"2024-10-18T20:02:45.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T11:14:35.162Z","etag":null,"topics":["decision-trees","linear-regression","logistic-regression","matplotlib-pyplot","plotly","python","random-forest","scikit-learn","streamlit"],"latest_commit_sha":null,"homepage":"https://dynamic-ml-model-selector.streamlit.app/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Jayadavv.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-18T06:52:32.000Z","updated_at":"2024-10-18T20:02:49.000Z","dependencies_parsed_at":"2024-10-20T08:35:28.788Z","dependency_job_id":"077a7c13-5fae-4ee6-9ba7-cd4d7fc8e02b","html_url":"https://github.com/Jayadavv/Dynamic-ML-Model-Selector","commit_stats":null,"previous_names":["jayadavv/dynamic-ml-model-selector"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jayadavv%2FDynamic-ML-Model-Selector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jayadavv%2FDynamic-ML-Model-Selector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jayadavv%2FDynamic-ML-Model-Selector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jayadavv%2FDynamic-ML-Model-Selector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jayadavv","download_url":"https://codeload.github.com/Jayadavv/Dynamic-ML-Model-Selector/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247325701,"owners_count":20920714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["decision-trees","linear-regression","logistic-regression","matplotlib-pyplot","plotly","python","random-forest","scikit-learn","streamlit"],"created_at":"2024-10-31T03:05:47.919Z","updated_at":"2025-12-30T23:07:33.476Z","avatar_url":"https://github.com/Jayadavv.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dynamic Machine Learning Model Selector\n\n![{1E7A2E88-B2BF-4F86-B7C6-4623E3C3CC0C}](https://github.com/user-attachments/assets/14c6cc48-b852-4e38-b97a-4b26a48bcef5)\n\n![{C918A573-83F2-4553-AB03-D8E6D3395FE6}](https://github.com/user-attachments/assets/18fa3930-8b5f-4e30-9d87-f247ed54b234)\n\n![{EB8C9722-BA0A-4770-8CEA-4BEFA46A3BA8}](https://github.com/user-attachments/assets/d8cd4b48-4788-4d66-9ca1-3478d2471b90)\n\n\n![{8EE47649-EFA6-44D0-B0C2-36C4681F878F}](https://github.com/user-attachments/assets/50287d7e-a29d-4e51-88f6-dfa70979ccf2)\n\n![{64086CCD-DDEA-4DDD-8247-47B0675BDF14}](https://github.com/user-attachments/assets/3cb76739-fc91-4b08-9f5a-9cc0d87465c9)\n\n\n## Overview\n\nThe **Dynamic Machine Learning Model Selector** is an interactive web application designed to facilitate the selection and evaluation of various machine learning models. This tool allows users to easily upload datasets, select features and target variables, and dynamically apply regression and classification models. It aims to streamline the model selection process by providing essential performance metrics and visualizations.\n\n## Features\n\n- **Dataset Upload**: Users can upload their own CSV datasets for analysis.\n- **Model Selection**: Choose from multiple machine learning models, including:\n  - Linear Regression\n  - Logistic Regression\n  - Decision Tree Classifier/Regressor\n  - Random Forest Classifier/Regressor (with hyperparameter tuning)\n- **Visualization**: Visualize model performance through confusion matrices, bar graphs of Mean Squared Error, and other metrics.\n- **User-Friendly Interface**: Built with Streamlit for an intuitive user experience.\n\n## Getting Started\n\n### Prerequisites\n\n- Python 3.x installed on your system. Download it from [python.org](https://www.python.org/downloads/).\n\n### Installation\n\nFollow the steps below to set up the project:\n\n1. Open a terminal and navigate to your project folder:\n    ```bash\n    cd myproject\n    ```\n\n2. Create a virtual environment:\n    ```bash\n    python -m venv venv\n    ```\n\n3. Activate the virtual environment:\n    - **Windows PowerShell**:\n      ```bash\n      .\\venv\\Scripts\\Activate.ps1\n      ```\n    - **macOS/Linux**:\n      ```bash\n      source venv/bin/activate\n      ```\n\n4. Install the required libraries:\n    ```bash\n    pip install streamlit pandas scikit-learn matplotlib seaborn plotly\n    ```\n\n5. Launch the application:\n    ```bash\n    streamlit run app.py\n    ```\n\n## Requirements\n\nThe following Python libraries are required for this application:\n\n- `streamlit`\n- `pandas`\n- `scikit-learn`\n- `matplotlib`\n- `seaborn`\n- `plotly`\n\nThese can be installed using:\n```bash\npip install -r requirements.txt\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjayadavv%2Fdynamic-ml-model-selector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjayadavv%2Fdynamic-ml-model-selector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjayadavv%2Fdynamic-ml-model-selector/lists"}