AutoMLAgent is a project designed to automate machine learning workflows. This README provides setup instructions to get you started.
- Python 3.8+
- pip (Python package manager)
- (Optional) virtualenv for isolated environments
-
Clone the repository
git clone https://github.com/yourusername/AutoMLAgent.git cd AutoMLAgent/AutoML -
Create and activate a virtual environment (recommended)
python -m venv AutoML_Venv # On Windows AutoML_Venv\Scripts\activate # On macOS/Linux source AutoML_Venv/bin/activate
-
Install dependencies
pip install -r requirements.txt
-
Configuration
- Edit any configuration files as needed (see
config/or.env.exampleif available).
- Edit any configuration files as needed (see
-
Run the project
gradio app.py
AutoML/
├── dataset/ # Data files and datasets
├── agents/ # Saved models
├── requirements.txt
├── README.md
└── app.py
Pull requests are welcome. For major changes, please open an issue first.
This project is licensed under the MIT License.